Share

AcDbDatabase::getSymbolTable

C++

Acad::ErrorStatus getSymbolTable(
    AcDbLayerTable*& pTable, 
    AcDb::OpenMode mode = AcDb::kForRead
);

Description

Opens the database's symbol table in the mode specified by mode. The pTable pointer is filled in with the address of the symbol table that corresponds to the type of the pointer. For example, the function that accepts an AcDbLinetypeTable pointer opens the Linetype table and the function that accepts an AcDbBlockTable pointer opens the Block table.

Returns Acad::eOk if open is successful.

Parameters

Parameters Description
pTable Returns pointer to the symbol table
mode Input mode in which to open the table

Links

AcDbDatabase Class

Was this information helpful?