table object

Discussion in 'AutoCAD' started by xxxTed Schaefer, Jun 14, 2004.

  1. I can't find much documentation and sample code for the table object?
    Does anyone know where it is?

    Thanks, Ted
     
    xxxTed Schaefer, Jun 14, 2004
    #1
  2. xxxTed Schaefer

    Ben Rand Guest

    Unlike the SheetSet Manager documentation, I found the Table object help in
    the Autocad ActiveX and VBA Reference to be fairly well developed.

    Anything specific you're trying to do?

    Ben Rand
    CAD Manager
    CEntry Constructors & Engineers
     
    Ben Rand, Jun 15, 2004
    #2
  3. Ben,

    In My help, all table object code examples point to:

    Sub Example_Table()
    ' This example adds a table in model space
    Dim MyModelSpace As IAcadModelSpace2
    Set MyModelSpace = ThisDrawing.ModelSpace
    Dim pt(2) As Double
    Dim MyTable As AcadTable
    Set MyTable = MyModelSpace.Addtable(pt, 5, 5, 10, 30)
    ZoomExtents
    End Sub

    I have figured out most of what I want to do, but its a pain without any
    sample code.


    - Ted
     
    xxxTed Schaefer, Jun 15, 2004
    #3
  4. xxxTed Schaefer

    Ben Rand Guest

    Oh yeah, that. Sorry. I forgot the one example of code. At least programming
    with tables seemed relatively straightforward compared to SSM.
     
    Ben Rand, Jun 15, 2004
    #4
  5. And don't forget that intellisense for the table object seems half-baked at
    best.
    I guess they only had enough resources to polish sheet set documentation.
    It got a whole chapter, but then as you indicate, its not so straight
    forward.

    - Ted
     
    xxxTed Schaefer, Jun 15, 2004
    #5
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.