|
|
Programmer's Reference >
WordApplication API >
Element > InsertTableBefore
InsertTableBefore Method
Signature:
public Table InsertTableBefore ( int rows
, int columns
)
Description:
Creates and returns a Table at the beginning of this Element. The table will contain the specified number of rows and columns.
Parameters:
|
rows |
An int representing the number of rows the table will have. |
|
columns |
An int representing the number of columns the table will have. |
Returns:
Table
A Table object representing the newly created table.
Examples:
[csharp]
Table tbl = e.InsertTableBefore(2, 3);
[vbnet]
Dim tbl As Table = e.InsertTableBefore(2, 3)

Copyright 2007 © SoftArtisans, Inc. All Rights Reserved.
|
|
|