Command.GetFlag

説明

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

注:フラグの値はプロパティとして取得できます。それらのプロパティについては「参照」の項で確認できます。

C#構文

Boolean Command.GetFlag( Int32 );

スクリプト構文

oBoolean = Command.GetFlag( Flag );

戻り値

要求されたフラグが有効になっているかどうかを示すBoolean

パラメータ

パラメータ タイプ 説明
Flag siCommandCapabilities 取得するフラグ

JScript の例

/*

	See if a command supports key assignment.

*/

var oCmd = Commands.Item("Apply Operator");

if ( true == oCmd.GetFlag(siSupportsKeyAssignment) )

{

	LogMessage(oCmd.Name + " supports key assignment.");

}

else

{

	LogMessage(oCmd.Name + " does not support key assignment.");

}

関連項目

Command.CannotBeUsedInBatch Command.IsNotLogged Command.SupportsKeyAssignment