This 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/PMI/PMIHoleThreadNote.h>
Description
Gets and sets the primary display settings for the Hole/Thread Note PMI.
This will always be existent, and includes information about format and units.
"pMIHoleThreadNote_var" is a variable referencing a PMIHoleThreadNote object.
# Get the value of the property. propertyValue = pMIHoleThreadNote_var.primaryDisplaySettings
# Set the value of the property. pMIHoleThreadNote_var.primaryDisplaySettings = propertyValue
"pMIHoleThreadNote_var" Is a variable referencing a PMIHoleThreadNote Object.
#include <Fusion/PMI/PMIHoleThreadNote.h>
// Get the value of the property. Ptr<PMIDisplaySettings> propertyValue = pMIHoleThreadNote_var->primaryDisplaySettings();
// Set the value of the property, where value_var is a PMIDisplaySettings. bool returnValue = pMIHoleThreadNote_var->primaryDisplaySettings(value_var);
"pMIHoleThreadNote_var" Is a variable referencing a PMIHoleThreadNote Object.
// Get the value of the property. propertyValue = pMIHoleThreadNote_var.primaryDisplaySettings;
// Set the value of the property. pMIHoleThreadNote_var.primaryDisplaySettings = propertyValue;