TurningTool.holderGeometry Property

Parent Object: TurningTool
Defined in namespace "adsk::cam" and the header file is <Cam/Tools/TurningTool.h>

Description

Get or set the geometry and attachment points for the holder for this turning tool.

A Null Object represents a tool without any 3D data associated.

Syntax

"turningTool_var" is a variable referencing a TurningTool object.
# Get the value of the property.
propertyValue = turningTool_var.holderGeometry

# Set the value of the property.
turningTool_var.holderGeometry = propertyValue
"turningTool_var" Is a variable referencing a TurningTool Object.
#include <Cam/Tools/TurningTool.h>

// Get the value of the property.
Ptr<AssemblyComponentGeometry> propertyValue = turningTool_var->holderGeometry();

// Set the value of the property, where value_var is an AssemblyComponentGeometry.
bool returnValue = turningTool_var->holderGeometry(value_var);
"turningTool_var" Is a variable referencing a TurningTool Object.
// Get the value of the property.
propertyValue = turningTool_var.holderGeometry;

// Set the value of the property.
turningTool_var.holderGeometry = propertyValue;

Property Value

This is a read/write property whose value is an AssemblyComponentGeometry.

Version

Introduced in version April 2026