Search
TableNode.Item Property
See Also
 





Gets the Cell instance at the specified position.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public TableNode.Cell Item [
    int col,
    int row
] { get; }

Visual Basic  Copy Code

Public ReadOnly Property Item( _
    col As Integer, _
    row As Integer _
) As TableNode.Cell

 Parameters

col
The zero-based index of the cell's column.
row
The zero-based index of the cell's row.

 Property Value

An instance of the Cell class that represents the cell of the table at the specified position.

 See Also