• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Visual LISP, AutoLISP and General Customization

    Reply
    Distinguished Contributor
    Posts: 423
    Registered: ‎04-14-2004
    Accepted Solution

    Modify Table Column Widths

    164 Views, 5 Replies
    04-26-2012 07:42 AM

    Does anyone know how to modify the column widths of an ACAD_TABLE?

     

    I have known co-ordinates that I want each grip for the table to be set at.  I can't just copy and paste the table from drawing to drawing.  Each table of each drawing have different textual values, and the column widths will best be sized for each text value.

     

    Thanks,

    KP

    Please use plain text.
    *Expert Elite*
    Posts: 836
    Registered: ‎08-16-2007

    Re: Modify Table Column Widths

    04-26-2012 05:08 PM in reply to: kpennell

    If using dxf methods (entget, subst, and entmod), then the column width dxf is 142 code.

     

    If accessing object methods, use the setcolumnwidth method.

     

    (setq o (vlax-enamd->vla-object (car(entsel))))  ;;select table and get table object.

     

    (vla-setcolumnwidth o 0 4);;set the first column to 4 units wide.

    Please use plain text.
    Mentor
    Posts: 217
    Registered: ‎04-11-2010

    Re: Modify Table Column Widths

    04-26-2012 09:59 PM in reply to: kpennell
    Please use plain text.
    Distinguished Contributor
    Posts: 423
    Registered: ‎04-14-2004

    Re: Modify Table Column Widths

    04-27-2012 03:52 AM in reply to: kpennell

    I get the following error using the "SetColumnWidth" method.

     

    Select object: ; error: no function definition: VLAX-ENAMD->VLA-OBJECT

     

    For anyone doing a search on this, it should read (setq o (vlax-ename->vla-object (car(entsel))))

     

    Using this method is way simpler than stepping through the 142 dxf codes.

     

    Thank you so much.

     

    KP

    Please use plain text.
    Mentor
    Posts: 217
    Registered: ‎04-11-2010

    Re: Modify Table Column Widths

    04-27-2012 05:05 AM in reply to: kpennell

    Hi,

     

    1.- (vl-load-com) 

    2..-(vlax-ename->vla-object (car(entsel)))

     

    Gaston Nunez

    Please use plain text.
    Distinguished Contributor
    Posts: 423
    Registered: ‎04-14-2004

    Re: Modify Table Column Widths

    04-27-2012 05:09 AM in reply to: kpennell

    Yeah, the vl-load before is necessary.

     

    Thanks for adding that, for the solution to the problem.

     

    KP

    Please use plain text.