AutoDimensionInput.datumLocation Property

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

Description

Gets and sets the datum position used as the origin for strategies that require a datum (Baseline, Ordinate, and their symmetric variants). Defaults to BottomLeftDatumPositionType.

Syntax

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

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

// Get the value of the property.
DatumPositionsTypes propertyValue = autoDimensionInput_var->datumLocation();

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

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

Property Value

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

Version

Introduced in version September 2026