Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I use command:
AcadApplication AppAutoCAD = new AcadApplication();
AcadDocument AcDocument = AppAutoCAD.ActiveDocument;
AcadModelSpace AcModelSpace = AcDocument.ModelSpace;
AcadMText AcMText = AcModelSpace.AddMText(new double[] { 0, 0, 0 }, 0, "你好");
AcMText.Width = 50;
AcMText.Height = 30;
The result is the width of MText changed. Also the height of MText changed, but it changed the text height, not defined height. So, how to change the defined height?
Solved! Go to Solution.