Command.SetFlag

説明

コマンドの動作に影響する各種フラグのいずれかの状態を設定します。フラグの値はCommand.GetFlagで取得できます。

コマンドの定義を更新する場合はCommand.Updateを呼び出す必要があります。つまり、定義を更新しなければ、変更は現在のコマンドに限定されます。

C#構文

Command.SetFlag( Int32, Boolean );

スクリプト構文

Command.SetFlag( Flag, [Enabled] );

パラメータ

パラメータ タイプ 説明
Flag siCommandCapabilities 設定するフラグ
Enabled Boolean True ではフラグが有効になり(デフォルト)、False では無効になります。

デフォルト値:true

JScript の例

/*

	JScript example demonstrating disabling of command logging

*/

var cmd = Application.CreateCommand("CustomCmd") ;

cmd.ScriptingName = "CustomCmd" ;

cmd.Handler = "Foo" ; 

// Although we define the command with jscript

// the embedded code is vbscript!

cmd.Language = "VBScript" ; 

cmd.Code = 

	"sub Foo()\n" +

	"	Logmessage \"CustomCmd called\" \n" +

	"end sub" ;

cmd.ReturnValue = false ;

cmd.SetFlag(siNoLogging);

Application.AddCommand( cmd ) ;

// Call the routine:

Logmessage( "About to call custom cmd:" ); 

CustomCmd() ;

Logmessage( "Finished calling custom cmd" ); 

// Result: In the script history the Logmessage call is shown

// but the name CustomCmd is not logged.

//INFO : About to call custom cmd:

//INFO : CustomCmd called

//INFO : Finished calling custom cmd

//If we had not set the siNoLogging then this would be the logged results:

/*

//INFO : About to call custom cmd:

//INFO : CustomCmd called

CustomCmd();

//INFO : Finished calling custom cmd

*/

Application.RemoveCommand("CustomCmd")

関連項目

Command.Update