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,
	bool autoPopulateCells
)
Public Function AddRow ( 
	isCopyFormat As Boolean,
	autoPopulateCells As Boolean
) As TableRow
public:
virtual TableRow^ AddRow(
	bool isCopyFormat, 
	bool autoPopulateCells
) sealed
abstract AddRow : 
        isCopyFormat : bool * 
        autoPopulateCells : bool -> TableRow 
override AddRow : 
        isCopyFormat : bool * 
        autoPopulateCells : bool -> TableRow 

Parameters

isCopyFormat
Boolean
Indicates whether copy format from previous row or not
autoPopulateCells
Boolean
if specifies to populate cells automatically, set to true.

Return Value

TableRow

Implements

ITable..::..AddRow(Boolean, Boolean)

See Also