RadioButtonGroupCommandInput.isEnabled Property

Parent Object: RadioButtonGroupCommandInput

Derived from: CommandInput.isEnabled


Defined in namespace "adsk::core" and the header file is <Core/UserInterface/RadioButtonGroupCommandInput.h>

Description

Gets or sets if this input is currently enabled or disabled for user interaction.

Syntax

"radioButtonGroupCommandInput_var" is a variable referencing a RadioButtonGroupCommandInput object.
# Get the value of the property.
propertyValue = radioButtonGroupCommandInput_var.isEnabled

# Set the value of the property.
radioButtonGroupCommandInput_var.isEnabled = propertyValue
"radioButtonGroupCommandInput_var" Is a variable referencing a RadioButtonGroupCommandInput Object.
#include <Core/UserInterface/RadioButtonGroupCommandInput.h>

// Get the value of the property.
boolean propertyValue = radioButtonGroupCommandInput_var->isEnabled();

// Set the value of the property, where value_var is a boolean.
bool returnValue = radioButtonGroupCommandInput_var->isEnabled(value_var);
"radioButtonGroupCommandInput_var" Is a variable referencing a RadioButtonGroupCommandInput Object.
// Get the value of the property.
propertyValue = radioButtonGroupCommandInput_var.isEnabled;

// Set the value of the property.
radioButtonGroupCommandInput_var.isEnabled = propertyValue;

Property Value

This is a read/write property whose value is a boolean.

Version

Introduced in version July 2015