Point Table
Is the an option to create a table off points or Civil points created in a drawing?, currently using V24, and it seems strange if there is no option for this
Comments
-
You could use data extraction to do this.
0 -
If there a "Point" then you can use just that to get a list of all "POINT's". If they are cogo points then can use "AECC_COGO_POINT" filter.
(setq ss (ssget (list (cons 0 "AECC_COGO_POINT")(cons 8 "0"))))
(setq ss (ssget (list (cons 0 "POINT")(cons 8 "0"))))
You can then get the properties like XYZ and for cogo points a pt number. Once you have all these items in a list can make a table that suits your needs. Using CIV3D we had a table style pre set up. Need to do the same.
So yes a custom solution is possible, for that need sample dwg, with say 10 points, don't need hundreds and a table showing sizes required, for text and columns etc, header and title details. Oh yeah depends on how busy I am for possible code.
0