Gets or sets the visible index of 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 int VisibleIndex { get; set; }
Visual Basic
Public Property VisibleIndex As Integer
	Get
	Set
Visual C++
public:
property int VisibleIndex {
	int get ();
	void set (int value);
}
F#
member VisibleIndex : int with get, set

Property Value

Type: Int32
The visible index of the Column.

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