The CxGrpNavBar object contains the following event:
This event is fired when a new node is selected.
CxGrpNavBarObject_EventOnSelChangeLevel(Level As Integer)
| Parameter | Required | Description |
|---|---|---|
|
Level |
Yes |
Indicates the level at which the selection change occurred. |
Example
The following example changes the level selection in the Rules group when a new node is selected in the GrpNavBar. This example is taken from CxGrpNavBar and CxGrpGrid Example.
|
Sub GrpNavBar_EventOnSelChangeLevel(Level) Dim This : Set This = GrpNavBar
cboLevel.Selection = Level + 1
ListfilterRules
End Sub |