Complete the code to set the document units to millimeters.
doc.Units = [1]The unit swMM sets the document units to millimeters in SolidWorks.
Complete the code to set the angle units to degrees.
doc.AngleUnits = [1]The unit swDegrees sets the angle units to degrees in SolidWorks.
Fix the error in setting the document precision to 3 decimal places.
doc.Precision = [1]Setting doc.Precision to 3 means the document will show 3 decimal places.
Fill both blanks to set the length units to inches and the document precision to 4 decimal places.
doc.Units = [1] doc.Precision = [2]
Use swInches to set units to inches and 4 for 4 decimal places precision.
Fill all three blanks to set the length units to centimeters, angle units to radians, and precision to 2 decimal places.
doc.Units = [1] doc.AngleUnits = [2] doc.Precision = [3]
Set units to swCentimeters, angle units to swRadians, and precision to 2 decimal places.