행의 위치 이동 여부를 가져오거나 설정합니다.

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

Syntax

C#
public bool IsMovable { get; set; }
Visual Basic
Public Property IsMovable As Boolean
	Get
	Set
Visual C++
public:
virtual property bool IsMovable {
	bool get () sealed;
	void set (bool value) sealed;
}

Return Value

행의 위치 이동이 가능하다면 true를, 그렇지 않다면 false를 가져옵니다.

Implements

IColumnDescriptor..::..IsMovable

Remarks

이 속성은 마우스를 이용하여 표시되는 행의 위치를 바꿀수 있는지에 대한 여부를 확인하는 것입니다. 이 속성의 값이 false이면 마우스를 이용하여 행의 위치 이동을 할 수 없습니다.

See Also