バージョン

PerformAction メソッド

ユーザーによるコントロールの操作をシミュレートします。
シンタックス
'宣言
 
Public Overridable Function PerformAction( _
   ByVal actionCode As UltraExplorerBarAction _
) As Boolean
public virtual bool PerformAction( 
   UltraExplorerBarAction actionCode
)

パラメータ

actionCode
実行するアクションを示す列挙体。

戻り値の型

アクションが実行されたかどうかを示すブール値。
解説

このメソッドは、ユーザーが実行できるアクションをシミュレートするために使用します。

アクションの多くは、特定の状況においてのみ適切です。アクションが不適切な場合、そのアクションは実行されません。たとえば、Active Group がないときに ActiveGroup を編集しようとすると、失敗します。

CurrentState プロパティを使用して、アクションが実行されようとしているときにコントロールの状態を決定します。

使用例
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);
		}
参照