Results 1 to 3 of 3

Thread: How to find and select a table object?

  1. #1
    Design Visualization Moderator stusic's Avatar
    Join Date
    2004-10
    Location
    Denver, Colorado
    Posts
    1,515
    Login to Give a bone
    0

    Question How to find and select a table object?

    I've been trying to figure out how to select a table. The fact that Autocad has tables in its object model does not help with my search for selecting an actual, visible table.

    Just looking to find a table in my drawing on a specific layer. Can someone enlighten me?

    TIA,

  2. #2
    Design Visualization Moderator stusic's Avatar
    Join Date
    2004-10
    Location
    Denver, Colorado
    Posts
    1,515
    Login to Give a bone
    0

    Default Re: How to find and select a table object?

    Oi, I feel like an ignoramoose now.

    Code:
    (setq sset (ssget "_X" (list (cons 0 "ACAD_TABLE"))))

  3. #3
    All AUGI, all the time
    Join Date
    2010-06
    Posts
    962
    Login to Give a bone
    0

    Default Re: How to find and select a table object?

    Quote Originally Posted by stusic View Post
    Just looking to find a table in my drawing on a specific layer. Can someone enlighten me?

    Try this ....

    Code:
    (setq sset (ssget "_X" '((0 . "ACAD_TABLE")(8 . "Your-layer-Name"))))

Similar Threads

  1. Where can i find my old table style?
    By christopherh1424831 in forum AutoCAD Tables
    Replies: 3
    Last Post: 2013-01-14, 08:18 PM
  2. Revit Can't find conceptual mass.rvt file when I select it?
    By solarsupplies in forum Revit - Conceptual Design Tools
    Replies: 0
    Last Post: 2011-04-01, 07:35 PM
  3. Find and Replace within Selected Cells in a Table
    By autocad.wishlist1734 in forum AutoCAD Wish List
    Replies: 0
    Last Post: 2007-09-27, 12:04 PM
  4. Linking AutoCAD Object Data Table to Access table
    By m.storey in forum AutoCAD Map 3D - General
    Replies: 0
    Last Post: 2006-05-02, 02:54 PM
  5. Replies: 3
    Last Post: 2004-06-14, 06:50 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •