GroupCommandInput.isEnabled Property

Parent Object: GroupCommandInput

Derived from: CommandInput.isEnabled


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

Description

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

Syntax

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

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

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

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

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

Property Value

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

Version

Introduced in version July 2015