Version

UltraExplorerBarAction Enumeration

Enumerates the possible actions that can be performed on the UltraExplorerBar
Syntax
'Declaration
 
Public Enum UltraExplorerBarAction 
   Inherits System.Enum
public enum UltraExplorerBarAction : System.Enum 
Members
MemberDescription
ActivateAndCheckFirstCurrentlyVisibleGroupOrItemActivates and checks the first currently visible group or item.
ActivateAndCheckFirstGroupActivateAndCheckFirstGroup
ActivateAndCheckFirstItemInNextGroupActivateAndCheckFirstItemInNextGroup
ActivateAndCheckFirstItemInSameGroupActivateAndCheckFirstItemInSameGroup
ActivateAndCheckLastCurrentlyVisibleGroupOrItemActivates and checks the last currently visible group or item.
ActivateAndCheckLastGroupActivateAndCheckLastGroup
ActivateAndCheckLastItemInPreviousGroupActivateAndCheckLastItemInPreviousGroup
ActivateAndCheckLastItemInSameGroupActivateAndCheckLastItemInSameGroup
ActivateAndCheckNextGroupOrItemActivateAndCheckNextGroupOrItem
ActivateAndCheckPreviousGroupOrItemActivateAndCheckPreviousGroupOrItem
ActivateFirstCurrentlyVisibleGroupOrItemActivates the first currently visible group or item.
ActivateFirstCurrentlyVisibleItemActivates the first visible item in the active group (or same group as the active item).
ActivateFirstGroupActivateFirstGroup
ActivateFirstGroupOrItemActivateFirstGroupOrItem
ActivateFirstItemInActiveGroupActivateFirstItemInActiveGroup
ActivateFirstItemInFirstGroupActivateFirstItemInFirstGroup
ActivateFirstItemInNextGroupActivateFirstItemInNextGroup
ActivateFirstItemInPreviousGroupActivateFirstItemInPreviousGroup
ActivateFirstItemInSameGroupActivateFirstItemInSameGroup
ActivateGroupContainingActiveItemActivateGroupContainingActiveItem
ActivateLastCurrentlyVisibleGroupOrItemActivates the last currently visible group or item.
ActivateLastCurrentlyVisibleItemActivates the last fully visible item in the active group (or same group as the active item).
ActivateLastGroupActivateLastGroup
ActivateLastGroupOrItemActivateLastGroupOrItem
ActivateLastItemInActiveGroupActivateLastItemInActiveGroup
ActivateLastItemInLastGroupActivateLastItemInLastGroup
ActivateLastItemInNextGroupActivateLastItemInNextGroup
ActivateLastItemInPreviousGroupActivateLastItemInPreviousGroup
ActivateLastItemInSameGroupActivateLastItemInSameGroup
ActivateNextGroupActivateNextGroup
ActivateNextGroupOrItemActivateNextGroupOrItem
ActivateNextItemActivateNextItem
ActivatePreviousGroupActivatePreviousGroup
ActivatePreviousGroupOrItemActivatePreviousGroupOrItem
ActivatePreviousItemActivatePreviousItem
ActivateQuickCustomizeButtonActivates the QuickCustomizeButton in the NavigationOverflowButtonArea.
CheckActiveItemSets the Checked property of the ActiveItem to true.
ClickActiveGroupClickActiveGroup
ClickActiveItemClickActiveItem
CloseNavigationPaneFlyoutCancelCloses the navigation pane flyout and cancels the result of the session.
CloseNavigationPaneFlyoutCommitCloses the navigation pane flyout and commits the result of the session.
DisplayQuickCustomizeMenuDisplays the QuickCustomize menu.
DoNothingDoes nothing. Used to map a key so it doesn't get passed on to another control
EditActiveGroupEditActiveGroup
EditActiveItemEditActiveItem
ExitEditModeExitEditMode
ScrollPageDownScrollPageDown
ScrollPageDownThenActivateAndCheckLastVisibleGroupOrItemScrolls down a page and then activates and checks the bottommost visible item.
ScrollPageUpScrollPageUp
ScrollPageUpThenActivateAndCheckFirstVisibleGroupOrItemScrolls up a page and then activates and checks the topmost visible item.
ScrollToBottomScrollToBottom
ScrollToTopScrollToTop
SelectActiveGroupSelectActiveGroup
TabNextFromActiveGroupOrItemActivates the appropriate next item or group relative to the current active group or item.
TabPreviousFromActiveGroupOrItemActivates the appropriate previous item or group relative to the current active group or item.
ToggleActiveGroupExpansionToggleActiveGroupExpansion
Example
The following code shows how to use the control's PerformAction method to force the control to perform one of its built in actions.

Imports System.Diagnostics
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinExplorerBar


	Private Sub Button23_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button23.Click

		' Using the built-in actions of the ExplorerBar control, activate the first group in the
		' control and then click it.
		Me.ultraExplorerBar1.PerformAction(UltraExplorerBarAction.ActivateFirstGroup)
		Me.ultraExplorerBar1.PerformAction(UltraExplorerBarAction.ClickActiveGroup)

	End Sub
using System.Diagnostics;
using Infragistics.Win;
using Infragistics.Win.UltraWinExplorerBar;


		private void button23_Click(object sender, System.EventArgs e)
		{
			// Using the built-in actions of the ExplorerBar control, activate the first group in the
			// control and then click it.
			this.ultraExplorerBar1.PerformAction(UltraExplorerBarAction.ActivateFirstGroup);
			this.ultraExplorerBar1.PerformAction(UltraExplorerBarAction.ClickActiveGroup);
		}
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