Storyboard.isInFullScreenMode Property

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

Description

Gets and sets whether it is in full screen mode for animation playback.

Syntax

"storyboard_var" is a variable referencing a Storyboard object.
# Get the value of the property.
propertyValue = storyboard_var.isInFullScreenMode

# Set the value of the property.
storyboard_var.isInFullScreenMode = propertyValue
"storyboard_var" Is a variable referencing a Storyboard Object.
#include <Fusion/Animation/Storyboard.h>

// Get the value of the property.
boolean propertyValue = storyboard_var->isInFullScreenMode();

// Set the value of the property, where value_var is a boolean.
bool returnValue = storyboard_var->isInFullScreenMode(value_var);
"storyboard_var" Is a variable referencing a Storyboard Object.
// Get the value of the property.
propertyValue = storyboard_var.isInFullScreenMode;

// Set the value of the property.
storyboard_var.isInFullScreenMode = propertyValue;

Property Value

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

Version

Introduced in version May 2026