![]() | Type | Description | ||
| Group as Group | A Group object being added. |
The following sample changes the background and foreground colors of each group being added:
Private Sub ExplorerTree1_AddGroup(ByVal Group As EXPLORERTREELibCtl.IGroup)
With Group
.BackColor = vbBlue
.ForeColor = vbWhite
End With
End Sub