Replies: 2 comments 6 replies
-
The |
Beta Was this translation helpful? Give feedback.
4 replies
-
You have access to the This script reads the cell values from a simple table: import ezdxf
def main():
doc = ezdxf.readfile(r"C:\Source\ezdxf.git\examples_dxf\acad_table_simple.dxf")
msp = doc.modelspace()
table = msp.query("ACAD_TABLE").first
acdb_table = table.xtags.get_subclass("AcDbTable")
values = [tag.value for tag in acdb_table.find_all(302)]
print("Table Values:")
print(values)
if __name__ == "__main__":
main() output:
Here is the DXF reference of |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
How to update the data in ACAD_TABLE please?
Beta Was this translation helpful? Give feedback.
All reactions