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

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

Syntax

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

Parameters

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

Return Value

지정한 인덱스의 항목입니다.

Exceptions

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

See Also