XlsWorksheetBase
AddTextEffectShape Method
|
Adds a text effect shape to the worksheet.
Namespace:
Spire.Xls.Core.Spreadsheet
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public IShape AddTextEffectShape(
PresetTextEffect effect,
string text,
int upperLeftRow,
int top,
int upperLeftColumn,
int left,
int height,
int width
)
Public Function AddTextEffectShape (
effect As PresetTextEffect,
text As String,
upperLeftRow As Integer,
top As Integer,
upperLeftColumn As Integer,
left As Integer,
height As Integer,
width As Integer
) As IShape
public:
IShape^ AddTextEffectShape(
PresetTextEffect effect,
String^ text,
int upperLeftRow,
int top,
int upperLeftColumn,
int left,
int height,
int width
)
member AddTextEffectShape :
effect : PresetTextEffect *
text : string *
upperLeftRow : int *
top : int *
upperLeftColumn : int *
left : int *
height : int *
width : int -> IShape
Parameters
-
effect
-
Type:
Spire.Xls
PresetTextEffect
The preset text effect to apply.
-
text
-
Type:
System
String
The text to display in the shape.
-
upperLeftRow
-
Type:
System
Int32
The row index of the upper left corner of the shape.
-
top
-
Type:
System
Int32
The top position of the shape.
-
upperLeftColumn
-
Type:
System
Int32
The column index of the upper left corner of the shape.
-
left
-
Type:
System
Int32
The left position of the shape.
-
height
-
Type:
System
Int32
The height of the shape.
-
width
-
Type:
System
Int32
The width of the shape.
Return Value
Type:
IShape
The added text effect shape.
See Also