Community
Civil 3D Forum
Welcome to Autodesk’s Civil 3D Forums. Share your knowledge, ask questions, and explore popular AutoCAD Civil 3D topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Editing a Table

2 REPLIES 2
Reply
Message 1 of 3
Denzuki1
195 Views, 2 Replies

Editing a Table

I have created a table from DXE information. The table contains over1500 cells. Now i am trying to adjust the table to fit within a bordered 24"x36" sheet. I seems to take forever to make the adjustments while the table keeps recalculating. Is there a way to make the table adjustments without the table constantly updating the information contained within it?

Thanks

2 REPLIES 2
Message 2 of 3
Jeff_M
in reply to: Denzuki1

There's a way, but it removes any visual clue as to how it is changing.

Make sure the ActiveX API is available to lisp:

(vl-load-com)

 

Select the table and convert to an ActiveX object:

(setq tbl (vlax-ename->vla-object (car (entsel "\nSelect table: "))))

 

Suppress the updates:

 

(vla-put-RegenerateTableSuppressed tbl :vlax-true)

 

 

Go about the process of editing how you think it is needed.

Reenable the updates:

 

(vla-put-RegenerateTableSuppressed tbl :vlax-false)

 

You can suppress and un-supress as much as you like. It may help a bit. 

 

Jeff_M, also a frequent Swamper
EESignature
Message 3 of 3
Denzuki1
in reply to: Denzuki1

Thank for the reply, I'll try it out.

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Rail Community


Autodesk Design & Make Report