Search
TableNode.RowCollection.Insert Method
See Also
 





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

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public void Insert (
    int index,
    TableNode.Row row
)

Visual Basic  Copy Code

Public Sub Insert( _
    index As Integer, _
    row As TableNode.Row _
)

 Parameters

index

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

row

The TableNode.Row object to add to the collection.

 Remarks

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

 See Also