The Command_SetBooleanProperty() function sets a specified boolean property for a command.
Command_SetBooleanProperty(command_tag, property, value)
• command_tag – The integer tag value for the command whose property is being set.
• property – An integer constant indicating the property to retrieve. The value corresponds to one of the following constants:
Constant |
Description |
---|---|
COMMAND_PROP_CHECKED |
True if the command is checked in a menu. False if it is not. |
COMMAND_PROP_DISABLED |
True if the command is disabled. False if it is not. |
COMMAND_PROP_HIDDEN |
True if the command is hidden. False if it is not. |
COMMAND_PROP_MENU_SHOW_IMAGE |
True if the command is showing an image in the menu. False if it is not. |
COMMAND_PROP_TOOLBAR_SHOW_IMAGE |
True if the command is showing an image in a toolbar. False if it is not. |
COMMAND_PROP_TOOLBAR_SHOW_TEXT |
True if the command is showing text in the toolbar. False if it is not. |
• value – A boolean indicating how to set the property. Refer to the preceding table.
A boolean indicating whether the property was set. True indicates the property was set, while false indicates it was not.