ConstructionPlane.isExtended Property

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

Description

Gets and sets whether the construction plane uses the extended display mode. When true, the plane extends to fill the viewport. When false, the plane size fits to the defining geometry (default). This property only applies to parametric construction planes.

Syntax

"constructionPlane_var" is a variable referencing a ConstructionPlane object.
# Get the value of the property.
propertyValue = constructionPlane_var.isExtended

# Set the value of the property.
constructionPlane_var.isExtended = propertyValue
"constructionPlane_var" Is a variable referencing a ConstructionPlane Object.
#include <Fusion/Construction/ConstructionPlane.h>

// Get the value of the property.
boolean propertyValue = constructionPlane_var->isExtended();

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

// Set the value of the property.
constructionPlane_var.isExtended = propertyValue;

Property Value

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

Version

Introduced in version July 2026