ShapeList
InsertTable Method
|
Adds a new Table to collection.
Namespace:
Spire.Presentation.Collections
Assembly:
Spire.Presentation (in Spire.Presentation.dll) Version: 10.4.2.0 (10.4.2.6046)
Syntax
public void InsertTable(
int index,
float x,
float y,
double[] columnWidths,
double[] rowHeights
)
Public Sub InsertTable (
index As Integer,
x As Single,
y As Single,
columnWidths As Double(),
rowHeights As Double()
)
public:
void InsertTable(
int index,
float x,
float y,
array<double>^ columnWidths,
array<double>^ rowHeights
)
member InsertTable :
index : int *
x : float32 *
y : float32 *
columnWidths : float[] *
rowHeights : float[] -> unit
Parameters
-
index
-
Type:
System
Int32
Index should be inserted.
-
x
-
Type:
System
Single
Left side of shape.
-
y
-
Type:
System
Single
Top side of shape.
-
columnWidths
-
Type:
System
Double
Widths of columns in the table.
-
rowHeights
-
Type:
System
Double
Heights of rows in the table.
See Also