IntegerSliderCommandInput.isFullWidth Property

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

Description

Gets or sets if this input fills the entire width of the dialog. If true, the name is ignored and the input control will fill the entire width of the command dialog. The default value for this property in a new command input if false, or not to fill the width. This property does not apply to GroupCommandInputs or TabCommandInputs.

Syntax

"integerSliderCommandInput_var" is a variable referencing an IntegerSliderCommandInput object.

# Get the value of the property.
propertyValue = integerSliderCommandInput_var.isFullWidth

# Set the value of the property.
integerSliderCommandInput_var.isFullWidth = propertyValue
"integerSliderCommandInput_var" is a variable referencing an IntegerSliderCommandInput object.
#include <Core/UserInterface/IntegerSliderCommandInput.h>

// Get the value of the property.
boolean propertyValue = integerSliderCommandInput_var->isFullWidth();

// Set the value of the property, where value_var is a boolean.
bool returnValue = integerSliderCommandInput_var->isFullWidth(value_var);

Property Value

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

Version

Introduced in version June 2015