지정한 인덱스에 있는 Row를 가져옵니다.

Namespace: Ntreev.Windows.Forms.Grid
Assembly: Ntreev.Windows.Forms.Grid (in Ntreev.Windows.Forms.Grid.dll) Version: 1.0.4216.32284

Syntax

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

Parameters

index
Type: System..::..Int32
가져올 Row의 인덱스(0부터 시작)입니다.

Return Value

지정한 인덱스의 Row입니다.

Exceptions

ExceptionCondition
System..::..ArgumentOutOfRangeException index가 0보다 작거나, Count보다 클 경우

See Also