Version

Disabling groups and items in WinExplorerBar

This topic shows you how to disable groups and items in UltraWinExplorerBar™.

In Visual Basic:

' Disable a group
ultraExplorerBar1.Groups(0).Enabled = False
' Disable an item
ultraExplorerBar1.Groups(1).Items(0).Settings.Enabled = Infragistics.Win.DefaultableBoolean.[False]

In C#:

// Disable a group
ultraExplorerBar1.Groups[0].Enabled = false;
 // Disable an item
ultraExplorerBar1.Groups[1].Items[0].Settings.Enabled = Infragistics.Win.DefaultableBoolean.False;