CadMultiPointOnSurfaceParameterValue.values Property

Parent Object: CadMultiPointOnSurfaceParameterValue

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::cam" and the header file is <Cam/Operations/CadMultiPointOnSurfaceParameterValue.h>

Description

Get/Set the values of the parameter as a vector of Point3D positions. Points are in CM units. Points are in model coordinates.

Syntax

"cadMultiPointOnSurfaceParameterValue_var" is a variable referencing a CadMultiPointOnSurfaceParameterValue object.
# Get the value of the property.
propertyValue = cadMultiPointOnSurfaceParameterValue_var.values

# Set the value of the property.
cadMultiPointOnSurfaceParameterValue_var.values = propertyValue
"cadMultiPointOnSurfaceParameterValue_var" Is a variable referencing a CadMultiPointOnSurfaceParameterValue Object.
#include <Cam/Operations/CadMultiPointOnSurfaceParameterValue.h>

// Get the value of the property.
std::vector<Point3D> propertyValue = cadMultiPointOnSurfaceParameterValue_var->values();

// Set the value of the property, where value_var is a Point3D.
bool returnValue = cadMultiPointOnSurfaceParameterValue_var->values(value_var);
"cadMultiPointOnSurfaceParameterValue_var" Is a variable referencing a CadMultiPointOnSurfaceParameterValue Object.
// Get the value of the property.
propertyValue = cadMultiPointOnSurfaceParameterValue_var.values;

// Set the value of the property.
cadMultiPointOnSurfaceParameterValue_var.values = propertyValue;

Property Value

This is a read/write property whose value is an array of type Point3D.

Version

Introduced in version September 2026