TabCommandInput.isVisible Property

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

Description

Gets or sets if this input will be visible to the user.

Setting a SelectionCommandInput to be invisible will clear any selections it currently has.

Syntax

"tabCommandInput_var" is a variable referencing a TabCommandInput object.

# Get the value of the property.
propertyValue = tabCommandInput_var.isVisible

# Set the value of the property.
tabCommandInput_var.isVisible = propertyValue
"tabCommandInput_var" is a variable referencing a TabCommandInput object.
#include <Core/UserInterface/TabCommandInput.h>

// Get the value of the property.
boolean propertyValue = tabCommandInput_var->isVisible();

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

Property Value

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

Version

Introduced in version July 2015