UserInterface.isUIEnabled Property

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

Description

Gets and sets if the Fusion user interface is enabled or not. By default it is enabled allowing the user to interact with Fusion. When set to false, the UI is disabled which blocks all interaction, including running commands, manipulating the view and interacting with the browser.

Syntax

"userInterface_var" is a variable referencing a UserInterface object.

# Get the value of the property.
propertyValue = userInterface_var.isUIEnabled

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

// Get the value of the property.
boolean propertyValue = userInterface_var->isUIEnabled();

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

Property Value

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

Version

Introduced in version January 2025