v4.0
アクティブなビューの現在アクティブなツール名をStringとして戻します。ツールが見つからない場合には、空の文字列が戻されます。
// Activate the rotation tool RotationTool(); // Get the name of the current tool var toolname = ActiveToolName; LogMessage( "current tool: " + toolname ); //INFO : "current tool: RotationTool" |