'Declaration Public Enum UltraExplorerBarAction Inherits System.Enum
public enum UltraExplorerBarAction : System.Enum
Member | Description |
---|---|
ActivateAndCheckFirstCurrentlyVisibleGroupOrItem | Activates and checks the first currently visible group or item. |
ActivateAndCheckFirstGroup | ActivateAndCheckFirstGroup |
ActivateAndCheckFirstItemInNextGroup | ActivateAndCheckFirstItemInNextGroup |
ActivateAndCheckFirstItemInSameGroup | ActivateAndCheckFirstItemInSameGroup |
ActivateAndCheckLastCurrentlyVisibleGroupOrItem | Activates and checks the last currently visible group or item. |
ActivateAndCheckLastGroup | ActivateAndCheckLastGroup |
ActivateAndCheckLastItemInPreviousGroup | ActivateAndCheckLastItemInPreviousGroup |
ActivateAndCheckLastItemInSameGroup | ActivateAndCheckLastItemInSameGroup |
ActivateAndCheckNextGroupOrItem | ActivateAndCheckNextGroupOrItem |
ActivateAndCheckPreviousGroupOrItem | ActivateAndCheckPreviousGroupOrItem |
ActivateFirstCurrentlyVisibleGroupOrItem | Activates the first currently visible group or item. |
ActivateFirstCurrentlyVisibleItem | Activates the first visible item in the active group (or same group as the active item). |
ActivateFirstGroup | ActivateFirstGroup |
ActivateFirstGroupOrItem | ActivateFirstGroupOrItem |
ActivateFirstItemInActiveGroup | ActivateFirstItemInActiveGroup |
ActivateFirstItemInFirstGroup | ActivateFirstItemInFirstGroup |
ActivateFirstItemInNextGroup | ActivateFirstItemInNextGroup |
ActivateFirstItemInPreviousGroup | ActivateFirstItemInPreviousGroup |
ActivateFirstItemInSameGroup | ActivateFirstItemInSameGroup |
ActivateGroupContainingActiveItem | ActivateGroupContainingActiveItem |
ActivateLastCurrentlyVisibleGroupOrItem | Activates the last currently visible group or item. |
ActivateLastCurrentlyVisibleItem | Activates the last fully visible item in the active group (or same group as the active item). |
ActivateLastGroup | ActivateLastGroup |
ActivateLastGroupOrItem | ActivateLastGroupOrItem |
ActivateLastItemInActiveGroup | ActivateLastItemInActiveGroup |
ActivateLastItemInLastGroup | ActivateLastItemInLastGroup |
ActivateLastItemInNextGroup | ActivateLastItemInNextGroup |
ActivateLastItemInPreviousGroup | ActivateLastItemInPreviousGroup |
ActivateLastItemInSameGroup | ActivateLastItemInSameGroup |
ActivateNextGroup | ActivateNextGroup |
ActivateNextGroupOrItem | ActivateNextGroupOrItem |
ActivateNextItem | ActivateNextItem |
ActivatePreviousGroup | ActivatePreviousGroup |
ActivatePreviousGroupOrItem | ActivatePreviousGroupOrItem |
ActivatePreviousItem | ActivatePreviousItem |
ActivateQuickCustomizeButton | Activates the QuickCustomizeButton in the NavigationOverflowButtonArea. |
CheckActiveItem | Sets the Checked property of the ActiveItem to true. |
ClickActiveGroup | ClickActiveGroup |
ClickActiveItem | ClickActiveItem |
CloseNavigationPaneFlyoutCancel | Closes the navigation pane flyout and cancels the result of the session. |
CloseNavigationPaneFlyoutCommit | Closes the navigation pane flyout and commits the result of the session. |
DisplayQuickCustomizeMenu | Displays the QuickCustomize menu. |
DoNothing | Does nothing. Used to map a key so it doesn't get passed on to another control |
EditActiveGroup | EditActiveGroup |
EditActiveItem | EditActiveItem |
ExitEditMode | ExitEditMode |
ScrollPageDown | ScrollPageDown |
ScrollPageDownThenActivateAndCheckLastVisibleGroupOrItem | Scrolls down a page and then activates and checks the bottommost visible item. |
ScrollPageUp | ScrollPageUp |
ScrollPageUpThenActivateAndCheckFirstVisibleGroupOrItem | Scrolls up a page and then activates and checks the topmost visible item. |
ScrollToBottom | ScrollToBottom |
ScrollToTop | ScrollToTop |
SelectActiveGroup | SelectActiveGroup |
TabNextFromActiveGroupOrItem | Activates the appropriate next item or group relative to the current active group or item. |
TabPreviousFromActiveGroupOrItem | Activates the appropriate previous item or group relative to the current active group or item. |
ToggleActiveGroupExpansion | ToggleActiveGroupExpansion |
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); }
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