Search
TableNode.ColumnCollection.Insert Method
See Also
 





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

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public void Insert (
    int index,
    TableNode.Column column
)

Visual Basic  Copy Code

Public Sub Insert( _
    index As Integer, _
    column As TableNode.Column _
)

 Parameters

index
The zero-based index at which to insert the column.
column
The TableNode.Column object to add to the collection.

 Remarks

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

 See Also