- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi
We are trying to scale dimensions of blocks in AutoCAD using AutoCAD Api. We have created dimensions using Rotated Dimensions and we have set DimScale before creating dimensions. Through this process we are able to increase the size of all the dimensions except dimension size of block reference.
Code snippet:
RotatedDimension dim = new RotatedDimension();
dim.DimScale = 120;
dim = new RotatedDimension(rotation, xLine1Point, xLine2Point, dimLinePoint, null, dimStyleId);
We have created dimensions in block and then scaled the block. All the dimensions created in the drawing are scaled according to DimScale but the dimension text in block alone are not scaled. Are we missing anything?
Thanks in advance.
Solved! Go to Solution.