[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITableRows.Add

Add Method

Add(int)

Adds a new row to the table object. Returns the ITableRow object.

Declaration
ITableRow Add(int position = -1)
Function Add(Optional position As Integer = -1) As ITableRow
Parameters
Type Name Description
int position

Optional 0 based Integer. Specifies the relative position of the new row.

Returns
Type Description
ITableRow

Returns ITableRowThe new row.

Add(int, int)

Adds new row(s) to the table object.

Declaration
void Add(int position, int count)
Sub Add(position As Integer, count As Integer)
Parameters
Type Name Description
int position

0 based Integer. Specifies the relative position of the new row(s).

int count

Specifies the count of the new row(s).