Gets the child 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
If success, a child Row is returned. Otherwise null.

See Also