Version

AfterRibbonTabDropDown Event

Occurs after the dropdown for the minimized ribbon opens.
Syntax
'Declaration
 
Public Event AfterRibbonTabDropDown As RibbonTabEventHandler
public event RibbonTabEventHandler AfterRibbonTabDropDown
Event Data

The event handler receives an argument of type RibbonTabEventArgs containing data related to this event. The following RibbonTabEventArgs properties provide information specific to this event.

PropertyDescription
Tab Returns the tab associated with the event.
Example
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinToolBars


Private Sub UltraToolbarsManager1_AfterRibbonTabDropDown(ByVal sender As System.Object, ByVal e As Infragistics.Win.UltraWinToolbars.RibbonTabEventArgs) Handles UltraToolbarsManager1.AfterRibbonTabDropDown
	Dim messageText As String = String.Format("The '{0}' ribbon tab has just been dropped down..", e.Tab.Key)
	Debug.WriteLine(messageText)
End Sub
using Infragistics.Win;
using Infragistics.Win.UltraWinToolBars;
using System.Diagnostics;

private void ultraToolbarsManager1_AfterRibbonTabDropDown(object sender, RibbonTabEventArgs e)
{
	string messageText = string.Format("The '{0}' ribbon tab has just been dropped down.", e.Tab.Key);
	Debug.WriteLine(messageText);
}
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