CustomGraphicsGroup.isVisible Property

Parent Object: CustomGraphicsGroup
Defined in namespace "adsk::fusion" and the header file is <Fusion/Graphics/CustomGraphicsGroup.h>

Description

Gets and sets if the graphics entity is visible in the graphics window. By default, when a new entity is created it is visible.

Syntax

"customGraphicsGroup_var" is a variable referencing a CustomGraphicsGroup object.

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

# Set the value of the property.
customGraphicsGroup_var.isVisible = propertyValue
"customGraphicsGroup_var" is a variable referencing a CustomGraphicsGroup object.
#include <Fusion/Graphics/CustomGraphicsGroup.h>

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

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

Property Value

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

Version

Introduced in version September 2017