Returns/sets the visibility of the
UltraExplorerBarGroup – i.e., whether the
UltraExplorerBarGroup will be displayed under the proper circumstances.
The following code show how to access the Group's Visible property.
Imports System.Diagnostics
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinExplorerBar
Private Sub Button32_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button32.Click
' Toggle the visible status of each Group.
Dim group As UltraExplorerBarGroup
For Each group In Me.ultraExplorerBar1.Groups
group.Visible = Not group.Visible
Next
End Sub
'Declaration
Public Property Visible As Boolean
using System.Diagnostics;
using Infragistics.Win;
using Infragistics.Win.UltraWinExplorerBar;
private void button32_Click(object sender, System.EventArgs e)
{
// Toggle the visible status of each Group.
foreach(UltraExplorerBarGroup group in this.ultraExplorerBar1.Groups)
{
group.Visible = !group.Visible;
}
}
'Declaration
Public Property Visible As Boolean
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2