Storyboard.isViewRecordingOn Property

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

Description

Gets and sets whether the view recording is on or off. When enabled, the view recording captures the camera change of the viewport and creates ViewAction accordingly.

Syntax

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

# Set the value of the property.
storyboard_var.isViewRecordingOn = 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->isViewRecordingOn();

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

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

Property Value

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

Version

Introduced in version May 2026