CAD删除Entity的所有XData(ResultBuffer)信息,C# .NET
想刪除一個Entity的全部XData屬性,網上沒有找到完整的代碼,只有刪除XData的單個屬性,根據這些,自己組合了下,寫了刪除全部XData屬性的代碼
附上源碼
? ? ?/// <summary>
? ? ? ? /// 清除XData
? ? ? ? /// </summary>
? ? ? ? /// <param name="entityID"></param>
? ? ? ? public static void ClearXData(? Entity ent)
? ? ? ? {
? ? ? ? ? ? try
? ? ? ? ? ? {
? ? ? ? ? ? ?
? ? ? ? ? ? ? ? TypedValue[] tTemp = ent.XData.AsArray();
? ? ? ? ? ? ? ? for (int i = 0; i < tTemp.Length; i++)
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? TypedValue ty = tTemp[i];
? ? ? ? ? ? ? ? ? ? string str=ty.Value.ToString();
? ? ? ? ? ? ? ? ? ? if (string.IsNullOrEmpty(str))
? ? ? ? ? ? ? ? ? ? ? ? continue;
? ? ? ? ? ? ? ? ? ? bool isdel = DelAttribute(ent, str);
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? catch (Exception ex)
? ? ? ? ? ? {
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? /// <summary>
? ? ? ? /// 刪除屬性
? ? ? ? /// </summary>
? ? ? ? /// <param name="ent"></param>
? ? ? ? /// <param name="arrayDelAppName">單個屬性名稱</param>
? ? ? ? /// <returns>返回刪除成功或失敗的標記</returns>
? ? ? ? public static bool DelAttribute(Entity ent, string strAppName)
? ? ? ? {
? ? ? ? ? ? bool blnSuccess = false;
? ? ? ? ? ? try
? ? ? ? ? ? {
? ? ? ? ? ? ? ? //strAppName = "RECORDID";
? ? ? ? ? ? ? ? using (Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.LockDocument())
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? using (Transaction trans = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.TransactionManager.StartTransaction())
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? TypedValue tv = new TypedValue((int)DxfCode.ExtendedDataRegAppName, strAppName);
? ? ? ? ? ? ? ? ? ? ? ? ResultBuffer rb = new ResultBuffer(tv);
? ? ? ? ? ? ? ? ? ? ? ? Entity entTemp =ent;
? ? ? ? ? ? ? ? ? ? ? ? entTemp.XData = rb;
? ? ? ? ? ? ? ? ? ? ? ? entTemp.Dispose();
? ? ? ? ? ? ? ? ? ? ? ? trans.Commit();
? ? ? ? ? ? ? ? ? ? ? ? blnSuccess = true;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ??
? ? ? ? ? ? }
? ? ? ? ? ? catch (System.Exception ex)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? return false;
? ? ? ? ? ? }
? ? ? ? ? ? return blnSuccess;
? ? ? ? }
總結
以上是生活随笔為你收集整理的CAD删除Entity的所有XData(ResultBuffer)信息,C# .NET的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【Python深度学习之路】-3.2PR
- 下一篇: PXE+KickStart自动化安装Li