Adds a row to table with copy format from the current last row, and then add columnsNum cells to the new row.

Namespace: Spire.Doc
Assembly: Spire.Doc (in Spire.Doc.dll) Version: 9.6.1.0 (9.6.1.3020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public TableRow AddRow(
	int columnsNum
)
Public Function AddRow ( 
	columnsNum As Integer
) As TableRow
public:
TableRow^ AddRow(
	int columnsNum
)
member AddRow : 
        columnsNum : int -> TableRow 

Parameters

columnsNum
Int32
The number of the count of the new row, it's must be -1 < columnsNum < 64.

Return Value

TableRow

See Also