MText mt = new MText();
if (startPt.X < endPt.X)
{
mt.Attachment = AttachmentPoint.TopLeft;
}
else if (startPt.X > endPt.X)
{
mt.Attachment = AttachmentPoint.TopRight;
}
AutoCAD 开发单行文字对齐方式
最新推荐文章于 2025-05-14 11:57:19 发布
MText mt = new MText();
if (startPt.X < endPt.X)
{
mt.Attachment = AttachmentPoint.TopLeft;
}
else if (startPt.X > endPt.X)
{
mt.Attachment = AttachmentPoint.TopRight;
}