バージョン

UltraExplorerBarAction 列挙体

UltraExplorerBarに対して実行可能なアクションを列挙します。
シンタックス
'宣言
 
Public Enum UltraExplorerBarAction 
   Inherits System.Enum
public enum UltraExplorerBarAction : System.Enum 
メンバ
メンバ解説
ActivateAndCheckFirstCurrentlyVisibleGroupOrItem現在表示されている最初のグループまたは項目をアクティブ化してチェックします。
ActivateAndCheckFirstGroupActivateAndCheckFirstGroup
ActivateAndCheckFirstItemInNextGroupActivateAndCheckFirstItemInNextGroup
ActivateAndCheckFirstItemInSameGroupActivateAndCheckFirstItemInSameGroup
ActivateAndCheckLastCurrentlyVisibleGroupOrItem現在表示されている最後のグループまたは項目をアクティブ化してチェックします。
ActivateAndCheckLastGroupActivateAndCheckLastGroup
ActivateAndCheckLastItemInPreviousGroupActivateAndCheckLastItemInPreviousGroup
ActivateAndCheckLastItemInSameGroupActivateAndCheckLastItemInSameGroup
ActivateAndCheckNextGroupOrItemActivateAndCheckNextGroupOrItem
ActivateAndCheckPreviousGroupOrItemActivateAndCheckPreviousGroupOrItem
ActivateFirstCurrentlyVisibleGroupOrItem現在表示されている最初のグループまたは項目をアクティブ化します。
ActivateFirstCurrentlyVisibleItemアクティブなグループ(またはアクティブな項目と同じグループ)の、表示されている最初の項目をアクティブ化します。
ActivateFirstGroupActivateFirstGroup
ActivateFirstGroupOrItemActivateFirstGroupOrItem
ActivateFirstItemInActiveGroupActivateFirstItemInActiveGroup
ActivateFirstItemInFirstGroupActivateFirstItemInFirstGroup
ActivateFirstItemInNextGroupActivateFirstItemInNextGroup
ActivateFirstItemInPreviousGroupActivateFirstItemInPreviousGroup
ActivateFirstItemInSameGroupActivateFirstItemInSameGroup
ActivateGroupContainingActiveItemActivateGroupContainingActiveItem
ActivateLastCurrentlyVisibleGroupOrItem現在表示されている最後のグループまたは項目をアクティブ化します。
ActivateLastCurrentlyVisibleItemアクティブなグループ(またはアクティブな項目と同じグループ)の、完全に表示されている最後の項目をアクティブ化します。
ActivateLastGroupActivateLastGroup
ActivateLastGroupOrItemActivateLastGroupOrItem
ActivateLastItemInActiveGroupActivateLastItemInActiveGroup
ActivateLastItemInLastGroupActivateLastItemInLastGroup
ActivateLastItemInNextGroupActivateLastItemInNextGroup
ActivateLastItemInPreviousGroupActivateLastItemInPreviousGroup
ActivateLastItemInSameGroupActivateLastItemInSameGroup
ActivateNextGroupActivateNextGroup
ActivateNextGroupOrItemActivateNextGroupOrItem
ActivateNextItemActivateNextItem
ActivatePreviousGroupActivatePreviousGroup
ActivatePreviousGroupOrItemActivatePreviousGroupOrItem
ActivatePreviousItemActivatePreviousItem
ActivateQuickCustomizeButtonNavigationOverflowButtonAreaのQuickCustomizeButtonをアクティブ化します。
CheckActiveItemActiveItem の Checked プロパティを true に設定します。
ClickActiveGroupClickActiveGroup
ClickActiveItemClickActiveItem
CloseNavigationPaneFlyoutCancelナビゲーション ペイン フライアウトを閉じて、セッションの結果をキャンセルします。
CloseNavigationPaneFlyoutCommitナビゲーション ペイン フライアウトを閉じて、セッションの結果をコミットします。
DisplayQuickCustomizeMenuQuickCustomizeメニューを表示します。
DoNothing動作しません。他のコントロールに渡されないようにキーをマップする場合に使用します。
EditActiveGroupEditActiveGroup
EditActiveItemEditActiveItem
ExitEditModeExitEditMode
ScrollPageDownScrollPageDown
ScrollPageDownThenActivateAndCheckLastVisibleGroupOrItemページを下にスクロールしてから、最下位の表示項目をアクティブ化してチェックします。
ScrollPageUpScrollPageUp
ScrollPageUpThenActivateAndCheckFirstVisibleGroupOrItemページを上にスクロールしてから、最上位の表示項目をアクティブ化してチェックします。
ScrollToBottomScrollToBottom
ScrollToTopScrollToTop
SelectActiveGroupSelectActiveGroup
TabNextFromActiveGroupOrItem現在アクティブなグループまたは項目の次のグループまたは項目をアクティブ化します。
TabPreviousFromActiveGroupOrItem現在アクティブなグループまたは項目の前のグループまたは項目をアクティブ化します。
ToggleActiveGroupExpansionToggleActiveGroupExpansion
使用例
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);
		}
参照