행의 너비 조절 여부를 가져오거나 설정합니다.

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 IsResizable { get; set; }
Visual Basic
Public Property IsResizable As Boolean
	Get
	Set
Visual C++
public:
virtual property bool IsResizable {
	bool get () sealed;
	void set (bool value) sealed;
}

Return Value

행의 너비 조절이 가능하면 true를, 그렇지 않다면 false를 반환합니다.

Implements

IColumnDescriptor..::..IsResizable

Remarks

이 속성은 마우스를 이용하여 행의 너비를 조절할 수 있는지에 대한 여부를 확인합니다. 이 속성의 값이 false이면 마우스를 이용하여 행의 너비조절을 할 수 없습니다.

See Also