Gets or sets a value indicating whether the end-user can move this Column.

Namespace: Dapfor.Net.Ui
Assembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)

Syntax

C#
public bool Movable { get; set; }
Visual Basic
Public Property Movable As Boolean
	Get
	Set
Visual C++
public:
property bool Movable {
	bool get ();
	void set (bool value);
}
F#
member Movable : bool with get, set

Property Value

Type: Boolean
true if movable; otherwise, false.

Remarks

The visible index is zero-based number of the visible Column in the Header. If the column is not visible, then the VisibleIndex equals to -1. By setting a new index in range [0, Count - 1], you move the Column in the Header.

See Also