Search
TableNode.CellCollection.Insert Method
See Also
 





Inserts the specified cell at the specified index within the collection.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public void Insert (
    int index,
    TableNode.Cell cell
)

Visual Basic  Copy Code

Public Sub Insert( _
    index As Integer, _
    cell As TableNode.Cell _
)

 Parameters

index

The zero-based index at which to insert the cell.

cell

The TableNode.Cell object to add to the collection.

 Remarks

Do not use this method directly. Use the methods of the TableNode class instead.

 See Also