| 
RowCollection
Insert Method (Int32, TableRow)
  | 
 Inserts a TableRow into the collection at the specified index.
 Namespace:
 Spire.Doc.Collections
 Assembly:
Spire.Doc (in Spire.Doc.dll) Version: 13.2.3.0 (13.2.3.3046)
 Syntax
Syntax
 
 
public void Insert(
	int index,
	TableRow row
)
 
Public Sub Insert ( 
	index As Integer,
	row As TableRow
)
 
public:
void Insert(
	int index, 
	TableRow^ row
)
 
member Insert : 
index : int * 
row : TableRow -> unit 
 
 
 
Parameters
 
- 
index
 
- 
 Type:
 
System
Int32
 
 The zero-based index at which the TableRow should be inserted.
- 
row
 
- 
 Type:
 
Spire.Doc
TableRow
 
 The TableRow to insert.
 
 See Also
See Also