Version

DropDown Method (Ribbon)

Displays the entire Ribbon or the contents of the SelectedTab when the DisplayMode property is set to RibbonDisplayMode.AutoHide or RibbonDisplayMode.TabsOnly.
Syntax
'Declaration
 
Public Sub DropDown() 
public void DropDown()
Example
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinToolBars

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click

	' Can't drop down the ribbon unless it's Minimized. 
	If Me.UltraToolbarsManager1.Ribbon.IsMinimized Then
   	' Drop down the ribbon
     Me.UltraToolbarsManager1.Ribbon.DropDown()
	End If

End Sub
using Infragistics.Win;
using Infragistics.Win.UltraWinToolBars;

private void button2_Click(object sender, EventArgs e)
{
	// Can't drop down the ribbon unless it's Minimized. 
	if (this.ultraToolbarsManager1.Ribbon.IsMinimized)
	{
		// Drop down the ribbon
		this.ultraToolbarsManager1.Ribbon.DropDown();
	}
}
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