행이 읽기 전용인지에 대한 여부를 가져오거나 설정합니다.

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

Return Value

행이 읽기 전용이라면 true를, 그렇지 않다면 false를 반환합니다.

Implements

IColumnDescriptor..::..IsReadOnly

Remarks

이 속성의 값이 true이면 행이 소유한 모든 셀이 읽기 전용으로 적용됩니다.

See Also