ConstructionAxis.isExtended Property

Parent Object: ConstructionAxis

PreviewThis functionality is provided as a preview of intended future API capabilities. You are encouraged to use it and report any problems or suggestions using the Fusion API and Scripts forum.

Because this is a preview of future functionality, there is the possibility that it will change, which will possibly break any existing programs that use this functionality. Because of that, you should never deliver any programs that use any preview capabilities. For a distributed program, you should wait until it has moved from preview to released state.


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

Description

Gets or sets whether this parametric construction axis uses extended sizing. When true, the axis is sized to fit the viewport extent rather than the default bounding-box-based sizing. This property can only be set on parametric construction axes.

Syntax

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

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

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

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

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

Property Value

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

Version

Introduced in version September 2026