Document Solutions for Word
GrapeCity.Documents.Word Assembly / GrapeCity.Documents.Word Namespace / Table Class / Split Method
The row where to split the table. This may be null, see location for details.
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.

In This Topic
    Split Method (Table)
    In This Topic
    Splits the table at a specified location.
    Syntax
    '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.
    See Also