Document Solutions for Word
GrapeCity.Documents.Word Assembly / GrapeCity.Documents.Word Namespace / CellCollection Class / Insert Method / Insert(String,Cell) Method
The paragraph text in the new cell.
The cell before which to insert the new cell. If null, the cell will be added to the end of the last table row in the range.

In This Topic
    Insert(String,Cell) Method
    In This Topic
    Inserts a Cell into this collection before a specified cell.
    Syntax
    'Declaration
     
    Public Overloads Function Insert( _
       ByVal text As System.String, _
       ByVal before As Cell _
    ) As Cell
    public Cell Insert( 
       System.string text,
       Cell before
    )

    Parameters

    text
    The paragraph text in the new cell.
    before
    The cell before which to insert the new cell. If null, the cell will be added to the end of the last table row in the range.

    Return Value

    The inserted Cell.
    See Also