Version

AfterRibbonGroupDropDown Event

Occurs after the dropdown for a collapsed ribbon group on the ribbon opens.
Syntax
'Declaration
 
Public Event AfterRibbonGroupDropDown As RibbonGroupEventHandler
public event RibbonGroupEventHandler AfterRibbonGroupDropDown
Event Data

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

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

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

private void ultraToolbarsManager1_AfterRibbonGroupDropDown(object sender, RibbonGroupEventArgs e)
{
	string messageText = string.Format("The '{0}' ribbon group has just been dropped down.", e.Group.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