明经CAD社区's Archiver
社区
›
AutoCAD.net/VB.net/C# 编程技术
› [求助]镜像的文字是反的,标注也是。怎么解决?
xgr
发表于 2011-10-31 18:23:36
本帖最后由 xgr 于 2011-10-31 18:24 编辑
Entity acEnt = tr.GetObject(ent.ObjectId, OpenMode.ForWrite) as Entity;
if (acEnt is DBText)
{
DBText A1 = acEnt as DBText;
if (A1.IsMirroredInX==true)
{
A1.IsMirroredInX = false;
}
}以上只适用DBText.
页:
1
[2]
查看完整版本:
[求助]镜像的文字是反的,标注也是。怎么解决?