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