Search
Grid.GetRowIndex Method
See Also
 





Returns the 0-based index of the specified row.

Namespace: MindFusion.Diagramming.Lanes
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public int GetRowIndex (
    Header row
)

Visual Basic  Copy Code

Public Function GetRowIndex( _
    row As Header _
) As Integer

 Parameters

row
A Header instance that represents a grid row.

 Return Value

The index of row, or -1 if the specified header represents a column or a group of child rows.

 Remarks

Only works for bottommost headers. If the specified row is a group header, returns -1.

 See Also