AutoCAD table object.
Supported Platforms: Windows only
Class Information
- Class Name
-
AcadTable
- Object Inheritance
-
Object AcadObject AcadEntity AcadTable
- Create Using
-
VBA
ModelSpace.AddTable PaperSpace.AddTable Block.AddTable
- Access Via
-
VBA
ModelSpace.Item PaperSpace.Item Block.Item SelectionSet.Item Group.Item
Members
These members are part of this object:
Methods |
Properties |
Events |
---|---|---|
Remarks
A table contains data in rows and columns. You can use the Table object to add and modify tables in a drawing.
To add a table to a drawing, use the AddTable method. After you add a table, you can modify the number of columns, the number of rows, and other settings.
All methods that change the Table object do the following:
- Open the Table object in write mode
- Modify the Table object based on the input parameters
- Close the Table object, which recomputes the Table
Recomputing large tables consumes a lot of time and memory because the Table object is reconstructed from scratch. If you are making multiple calls to update a table, you can improve performance by setting RegenerateTableSuppressed before and after making the modifications.