if (id.ObjectClass.IsDerivedFrom(RXObject.GetClass(typeof(DBText)))) { var text = (DBText)trans.GetObject(id, OpenMode.ForWrite); text.TextString = "AAA"; //当需要实时显示动作时加上下面的代码可以实现 db.TransactionManager.QueueForGraphicsFlush(); }
本文共 351 字,大约阅读时间需要 1 分钟。
if (id.ObjectClass.IsDerivedFrom(RXObject.GetClass(typeof(DBText)))) { var text = (DBText)trans.GetObject(id, OpenMode.ForWrite); text.TextString = "AAA"; //当需要实时显示动作时加上下面的代码可以实现 db.TransactionManager.QueueForGraphicsFlush(); }
转载于:https://www.cnblogs.com/swtool/p/8283772.html