컬렉션에서 지정된 위치의 행을 제거합니다.

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

Syntax

C#
public void RemoveAt(
	int index
)
Visual Basic
Public Sub RemoveAt ( _
	index As Integer _
)
Visual C++
public:
void RemoveAt(
	int index
)

Parameters

index
Type: System..::..Int32
제거할 행의 위치를 나타냅니다.

Remarks

데이터 소스와 바인딩 된 행을 제거할 수 없습니다.

Exceptions

ExceptionCondition
System..::..ArgumentOutOfRangeException index가 0보다 작거나, Count보다 클 경우
System..::..ArgumentException 제거할 수 없는 행일 경우

See Also