'Declaration Public Overloads Function InsertRow( _ ByVal row As Row, _ Optional ByVal keepFormatting As Boolean _ ) As Row
'Usage Dim instance As Table Dim row As Row Dim keepFormatting As Boolean Dim value As Row value = instance.InsertRow(row, keepFormatting)
public Row InsertRow( Row row, bool keepFormatting )
Parameters
- row
- The Row to copy.
- keepFormatting
- true if the format of the original Row is also copied, otherwise false.
Return Value
The new Row that was inserted.