Command.Builtin

Description

Returns a Boolean value indicating whether this command is pre-defined in Softimage (true) or a custom command (false).

Note: This property is read-only.

Tip: a fast way to find all custom commands is to call CommandCollection.Filter with "Custom".

Examples

VBScript Example

'
'       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