[]
Creates a new outline (range group) model event arguments object.
public RangeGroupModelEventArgs(bool isRowGroup, RangeGroupModelEventType type)
Public Sub New(isRowGroup As Boolean, type As RangeGroupModelEventType)
Type | Name | Description |
---|---|---|
bool | isRowGroup | Whether the outline (range group) is of rows (or else columns) |
RangeGroupModelEventType | type | Type of outline (range group) model event |
Creates a new outline (range group) model event arguments object.
public RangeGroupModelEventArgs(int startIndex, int count, bool isRowGroup, RangeGroupModelEventType type)
Public Sub New(startIndex As Integer, count As Integer, isRowGroup As Boolean, type As RangeGroupModelEventType)
Type | Name | Description |
---|---|---|
int | startIndex | Start index of row or column |
int | count | Number of rows or columns |
bool | isRowGroup | Whether the outline (range group) is of rows (or columns) |
RangeGroupModelEventType | type | Type of outline (range group) model event |
Creates a new outline (range group) model event arguments object.
public RangeGroupModelEventArgs(ArrayList groupsToExpand, bool expand, bool isRowGroup, int[] changedIndexes, RangeGroupModelEventType type)
Public Sub New(groupsToExpand As ArrayList, expand As Boolean, isRowGroup As Boolean, changedIndexes As Integer(), type As RangeGroupModelEventType)
Type | Name | Description |
---|---|---|
ArrayList | groupsToExpand | Outline (range group) to expand or collapse |
bool | expand | Whether to expand the outline (range group) (or collapse) |
bool | isRowGroup | Whether the outline (range group) is of rows (or columns) |
int[] | changedIndexes | Array of changed indexes |
RangeGroupModelEventType | type | Type of outline (range group) model |