Search
Table.DeleteRow Method
See Also
 



Deletes the specified row of the table.

 Syntax

VB6  Copy Code

Public Sub DeleteRow( _
    ByVal row As Long _
)

C++  Copy Code

public:
void DeleteRow (
    int row
)

 Parameters

row
The index of the row to delete.

 Remarks

Deletes the row with the index specified as argument. The table extents are not changed by this operation; you can use the SetRect method to change them.

 See Also