-
Two questions related to DXF data.
AcDbPolyline Note the 'SOMETEXT' attribute near the bottom of the polyline 'description'. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Discard XDATA for AppID "SOMETEXT" in all entities: for entity in doc.entitydb.values():
entity.discard_xdata("SOMETEXT") This method discards only the XDATA for the given AppID, it's possible to delete all XDATA, but this is not recommended because also AutoCAD stores important information in the XDATA section by multiple AppIDs. |
Beta Was this translation helpful? Give feedback.
Discard XDATA for AppID "SOMETEXT" in all entities:
This method discards only the XDATA for the given AppID, it's possible to delete all XDATA, but this is not recommended because also AutoCAD stores important information in the XDATA section by multiple AppIDs.