ObjectVisibility.isAllObjectsVisible Property

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

Description

Sets if all objects are visible or hidden. When setting this property it will set the value of all other properties of this object to true or false. When getting this property, if it is true, then all other properties are true. If false, one or more other properties are false.

Syntax

"objectVisibility_var" is a variable referencing an ObjectVisibility object.

# Get the value of the property.
propertyValue = objectVisibility_var.isAllObjectsVisible

# Set the value of the property.
objectVisibility_var.isAllObjectsVisible = propertyValue
"objectVisibility_var" is a variable referencing an ObjectVisibility object.
#include <Fusion/Fusion/ObjectVisibility.h>

// Get the value of the property.
boolean propertyValue = objectVisibility_var->isAllObjectsVisible();

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

Property Value

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

Version

Introduced in version November 2025