Hello
I want to set the unit for my cad image before drawing . is there any way ?
How can I set unit (inch , mm ,cm) in may cad image ?
Moderators: SDS, support, admin
Re: How can I set unit (inch , mm ,cm) in may cad image ?
Hello,
When your CAD drawing is loaded into a CADImage object, the field CADImage.Converter.HeadStruct.InsUnits contains a value of INSUNITS variable that specifies the drawing units. You can change this value in the following way:
For more information about the INSUNITS variable, please refer to the following article:
https://knowledge.autodesk.com/support/ ... 8-htm.html
Mikhail
When your CAD drawing is loaded into a CADImage object, the field CADImage.Converter.HeadStruct.InsUnits contains a value of INSUNITS variable that specifies the drawing units. You can change this value in the following way:
Code: Select all
cadImage.Converter.HeadStruct.InsUnits = InsUnitsStruct.Inches;
Code: Select all
cadImage.Converter.HeadStruct.InsUnits = InsUnitsStruct.Millimeters;
Code: Select all
cadImage.Converter.HeadStruct.InsUnits = InsUnitsStruct.Centimeters;
https://knowledge.autodesk.com/support/ ... 8-htm.html
Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support