Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm retreiving a table entity:
(setq TableEntity (car (entsel "\nSelect Table:")))
(setq TableData (entget TableEntity))
and all of this wonderful data. My point of interest is:
(141 . 4.66667)
(141 . 5.04762)
(141 . 4.66667)
(142 . 6.98857)
(142 . 19.3457)
(142 . 20.0)
which are the table row heights and column widths. The number of rows and widths will vary, and so will the row heights and column widths, per table per drawing.
How can I manipulate the lists to add all of the "141" values to get the true table height, and all of the "142" values to get the true table width?
Solved! Go to Solution.