AutoDimensionInput.view Property

Parent Object: AutoDimensionInput
Defined in namespace "adsk::drawing" and the header file is <Drawing/Sheet/AutoDimensionInput.h>

Description

Gets and sets the drawing view whose view chain will be dimensioned. Obtain the view from Sheet.views.

Syntax

"autoDimensionInput_var" is a variable referencing an AutoDimensionInput object.
# Get the value of the property.
propertyValue = autoDimensionInput_var.view

# Set the value of the property.
autoDimensionInput_var.view = propertyValue
"autoDimensionInput_var" Is a variable referencing an AutoDimensionInput Object.
#include <Drawing/Sheet/AutoDimensionInput.h>

// Get the value of the property.
Ptr<View> propertyValue = autoDimensionInput_var->view();

// Set the value of the property, where value_var is a View.
bool returnValue = autoDimensionInput_var->view(value_var);
"autoDimensionInput_var" Is a variable referencing an AutoDimensionInput Object.
// Get the value of the property.
propertyValue = autoDimensionInput_var.view;

// Set the value of the property.
autoDimensionInput_var.view = propertyValue;

Property Value

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

Version

Introduced in version September 2026