Softimage で事前定義されたコマンドか(true)カスタムコマンドか(false)を示すBoolean値を戻します。
注:このプロパティは読み取り専用です。
ヒント:すべてのカスタムコマンドを検索する最速の方法は、「Custom」とともにCommandCollection.Filterを呼び出す方法です。
'
' This example cleans up any custom commands in your system
'
' WARNING: Don't run this example unless you are sure you can
' reinstall all your custom commands.
'
for each oCmd in Application.Commands
if oCmd.Builtin = FALSE then
Application.RemoveCommand oCmd.Name
end if
next
|