Adds a row to table with copy format option

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(
	bool isCopyFormat,
	int columnsNum
)
Public Function AddRow ( 
	isCopyFormat As Boolean,
	columnsNum As Integer
) As TableRow
public:
TableRow^ AddRow(
	bool isCopyFormat, 
	int columnsNum
)
member AddRow : 
        isCopyFormat : bool * 
        columnsNum : int -> TableRow 

Parameters

isCopyFormat
Boolean
Indicates whether copy format from previous row or not
columnsNum
Int32
The number of the count of the new row, it's must be -1 < columnsNum < 64.

Return Value

TableRow

See Also