XSIApplication.ActiveToolName

導入

v4.0

詳細

アクティブなビューの現在アクティブなツール名をStringとして戻します。ツールが見つからない場合には、空の文字列が戻されます。

JScript の例

// Activate the rotation tool
RotationTool();
// Get the name of the current tool
var toolname = ActiveToolName;
LogMessage( "current tool: " + toolname );
//INFO : "current tool: RotationTool"