Gets a visible Row at the specified index.

Namespace: Dapfor.Net.Ui
Assembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)

Syntax

C#
public Row this[
	int index
] { get; }
Visual Basic
Public ReadOnly Default Property Item ( 
	index As Integer
) As Row
	Get
Visual C++
public:
property Row^ default[int index] {
	Row^ get (int index);
}
F#
member Item : Row with get

Parameters

index
Type: System..::..Int32

Property Value

Type: Row
A Row if found. Otherwise null is returned.

Remarks

The first visible child of this collection always has the index 0 and may be different to the index, returned by the VisibleIndex and ChildIndex properties. The indexes of the visible child Rows can be obtained from the VisibleChildIndex property.

See Also