'Declaration Public Function Split( _ ByVal row As Row, _ ByVal location As InsertLocation _ ) As Table
public Table Split( Row row, InsertLocation location )
Parameters
- row
- The row where to split the table. This may be null, see location for details.
- location
- The target location (relative to row) where to split the table.
If row is not null, valid location values are InsertLocation.Before and InsertLocation.After.
If row is null, valid location values are InsertLocation.Start and InsertLocation.End.
Return Value
The second part of the split table content.