Version

TransitionAreas Property

Returns or sets a value indicating the areas for which state transitions are enabled.
Syntax
'Declaration
 
Public Property TransitionAreas As ToolbarTransitionAreas
public ToolbarTransitionAreas TransitionAreas {get; set;}
Remarks

State transitions include actions such as deactivating a tool or entering/leaving the bounds of a RibbonGroup. By default, transitions are enabled for the ribbon and toolbars when the Style property is set to Office2007.

Example
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinToolBars

Me.UltraToolbarsManager1.TransitionAreas = ToolbarTransitionAreas.GalleryItems Or _
	ToolbarTransitionAreas.Ribbon Or _
	ToolbarTransitionAreas.RibbonTools
using Infragistics.Win;
using Infragistics.Win.UltraWinToolBars;

this.ultraToolbarsManager1.TransitionAreas = ToolbarTransitionAreas.GalleryItems | 
	ToolbarTransitionAreas.Ribbon | 
	ToolbarTransitionAreas.RibbonTools;
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