Document Solutions for Word
GrapeCity.Documents.Word Assembly / GrapeCity.Documents.Word Namespace / TableCollection Class / Insert Method / Insert(Int32,Int32,Style,InsertLocation) Method
The number of columns in the new table.
The number of rows in the new table.
The table style.
The target InsertLocation for the insertion.

In This Topic
    Insert(Int32,Int32,Style,InsertLocation) Method
    In This Topic
    Inserts a Table into this collection at a specified location.
    Syntax
    'Declaration
     
    Public Overloads Function Insert( _
       ByVal columns As System.Integer, _
       ByVal rows As System.Integer, _
       ByVal style As Style, _
       ByVal location As InsertLocation _
    ) As Table
    public Table Insert( 
       System.int columns,
       System.int rows,
       Style style,
       InsertLocation location
    )

    Parameters

    columns
    The number of columns in the new table.
    rows
    The number of rows in the new table.
    style
    The table style.
    location
    The target InsertLocation for the insertion.

    Return Value

    The inserted Table.
    See Also