Version

NavigationOverflowButtonAreaVisible Property

Returns/sets whether the NavigationOverflowButtonArea is visible when the Style is ‘3 – OutlookNavigationPane’.
Syntax
'Declaration
 
Public Property NavigationOverflowButtonAreaVisible As Boolean
public bool NavigationOverflowButtonAreaVisible {get; set;}
Example
The following demonstrates how to set the NavigationOverflowButtonAreaVisible property to hide the NavigationOverflowButtonArea.

Private Sub BtnHideNavigationOverflowArea_Click(ByVal sender As Object, ByVal e As EventArgs)

	' Hide the NavigationOverflowButtonArea
    
	Me.UltraExplorerBar1.NavigationOverflowButtonAreaVisible = False

End Sub
private void btnHideNavigationOverflowArea_Click(object sender, EventArgs e)
{
    // Hide the NavigationOverflowButtonArea
    this.ultraExplorerBar1.NavigationOverflowButtonAreaVisible = false;
}
Requirements

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

See Also