XSIApplication.ActiveToolName

導入

v4.0

詳細

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

C#構文

// get accessor

String rtn = XSIApplication.ActiveToolName;

JScript の例

// Activate the rotation tool

RotationTool();

// Get the name of the current tool

var toolname = ActiveToolName;

LogMessage( "current tool: " + toolname );

//INFO : "current tool: RotationTool"