Gets or sets the index of this Column in the group.

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

Syntax

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

Property Value

Type: Int32
The index in the group.

Remarks

The group index is a zero-based level of the Column in the list of grouped columns in the Header. If the column is not grouped, then the GroupIndex equals to -1. By setting a new index in the range [0, Count - 1], you move the Column in the group.

See Also