Hi Peticel,
For this part:
> Could you please also include how to change "Decimal display" and "Show trailing zeros"?
These can be set in the preset UI under "Formatting" :
If you want to set it on an object using script code:
dim.distanceDisplay = 'Decimal';
or
dim.distanceDisplay = 'Feet & Inches';
dim.numDecimalPlaces = 3;
dim.showTrailingZeros = true;
- Michael
|