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

In This Topic
    AddTable(Int32,Int32,Style) Method
    In This Topic
    Adds a Table to the end of the section.
    Syntax
    'Declaration
     
    Public Overloads Function AddTable( _
       ByVal columns As System.Integer, _
       ByVal rows As System.Integer, _
       ByVal style As Style _
    ) As Table
    public Table AddTable( 
       System.int columns,
       System.int rows,
       Style style
    )

    Parameters

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

    Return Value

    The added Table.
    See Also