[]
Initializes a new instance of the GridGroupRow class.
public GridGroupRow()
Public Sub New()
Initializes a new instance of the GridGroupRow class.
public GridGroupRow(object dataItem = null, bool isCollapsed = false)
Public Sub New(Optional dataItem As Object = Nothing, Optional isCollapsed As Boolean = False)
| Type | Name | Description |
|---|---|---|
| object | dataItem | The data item. |
| bool | isCollapsed | Sets whether the row is initially collapsed. |
Initializes a new instance of the GridGroupRow class.
public GridGroupRow(IDataCollection<object> collection, int dataIndex, bool isCollapsed = false)
Public Sub New(collection As IDataCollection(Of Object), dataIndex As Integer, Optional isCollapsed As Boolean = False)
| Type | Name | Description |
|---|---|---|
| IDataCollection<object> | collection | The collection containing the item. |
| int | dataIndex | Index of the data inside the collection. |
| bool | isCollapsed | Sets whether the row is initially collapsed. |
Initializes a new instance of the GridGroupRow class.
public GridGroupRow(IDataCollectionGroup<object, object> group, IDataCollection<object> groups, int index)
Public Sub New(group As IDataCollectionGroup(Of Object, Object), groups As IDataCollection(Of Object), index As Integer)
| Type | Name | Description |
|---|---|---|
| IDataCollectionGroup<object, object> | group | The group item. |
| IDataCollection<object> | groups | The collection of groups where this group is inside. |
| int | index | The index of the group inside the collection of groups. |