Share

AcDbDataTable

Class Hierarchy

AcRxObject
    AcGiDrawable
        AcDbObject
            AcDbDataTable

C++

class AcDbDataTable : public AcDbObject;

File

dbDataTable.h

Description

The AcDbDataTable class provides a general-purpose repository for simple numeric, character, 3D point, or object ID information arranged in a two-dimensional table. It relies on two component classes: AcDbDataCell and AcDbDataColumn.

The AcDbDataTable class represents an array of AcDbDataColumn objects. A row of data is represented by an AcDbDataCellArray, which is a typedef for an AcArray of AcDbDataCell objects. The array is zero based, as is the column array, so the first cell in a table is referenced by indexes of [0,0].

An AcDbDataTable can be named.

To build a table, append the desired columns and add content in the form of rows using the methods of this class.

Links

AcDbDataTable Methods, AcDbDataTable Operators

Was this information helpful?