Document Solutions for Word
GrapeCity.Documents.Word Assembly / GrapeCity.Documents.Word Namespace / TableCollection Class / Add Method / Add(Int32,Int32) Method
The number of columns in the new table.
The number of rows in the new table.

In This Topic
    Add(Int32,Int32) Method
    In This Topic
    Adds a Table to this collection at the InsertLocation.End location.
    Syntax
    'Declaration
     
    Public Overloads Function Add( _
       ByVal columns As System.Integer, _
       ByVal rows As System.Integer _
    ) As Table
    public Table Add( 
       System.int columns,
       System.int rows
    )

    Parameters

    columns
    The number of columns in the new table.
    rows
    The number of rows in the new table.

    Return Value

    The added Table.
    See Also