Interface ISemanticCommandDefault

interface ISemanticCommandDefault {
    caption?: string;
    execute?: string;
    isEnabled?: boolean;
    isToggled?: boolean;
    isVisible?: boolean;
    label?: string;
}

Properties

caption?: string

Default command caption

execute?: string

Default command id to execute if no command is enabled

isEnabled?: boolean

Whether the default command is enabled.

isToggled?: boolean

Whether the default command is toggled.

isVisible?: boolean

Whether the default command is visible.

label?: string

Default command label