Gets a visible Row at the specified index.

Namespace: Dapfor.Wpf.Controls
Assembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)

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
The index.

Return Value

Type: Row
Row object if found. Otherwise null.

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