Command.SupportsKeyAssignment

説明

コマンドでキーの割り当てがサポートされているか(true)されていないか(false)を示すBoolean値を戻します。このプロパティは、Command.GetFlagのショートカットです。

注:このプロパティは読み取り専用です。

C#構文

// get accessor

Boolean rtn = Command.SupportsKeyAssignment;

JScript の例

/*

	See if a command supports key assignment

*/

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

if ( true == oCmd.SupportsKeyAssignment )

{

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

}

else

{

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

}

関連項目

Command.GetFlag Command.SetFlag