Search
Table.InsertRow Method
See Also
 



Inserts a new row into the table.

 Syntax

VB6  Copy Code

Public Sub InsertRow( _
    ByVal row As Long _
)

C++  Copy Code

public:
void InsertRow (
    int row
)

 Parameters

row
Specifies at which position the row is to be inserted.

 Remarks

Inserts a new row in a table at the specified position. The table's extents are not changed by this operation; you can use the SetRect method to change them.

 See Also