ConstructionPlaneInput.isExtended Property

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

Description

Gets and sets whether the construction plane will use the extended display mode when created. When true, the plane extends to fill the viewport. When false, the plane size fits to the defining geometry (default).

Syntax

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

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

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

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

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

Property Value

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

Version

Introduced in version July 2026