Share

acdbGetNamedPathDictionary

C++

Acad::ErrorStatus SCENEDLLIMPEXP acdbGetNamedPathDictionary(
    AcDbDatabase* pDb, 
    AcDbDictionary*& pDict, 
    AcDb::OpenMode mode
);

File

dbNamedPath.h

Description

Given the database pointer pDb, this function opens the named path dictionary (ACAD_NAMEDPATH) in the mode specified by mode.

Returns Acad::eOk if successful. Returns Acad::eKeyNotFound if the named path dictionary does not exist .

Parameters

Parameters Description
pDb Input pointer to the database from which to retrieve the named path dictionary
pDict Output pointer to the named path dictionary
mode Input requested open mode

Was this information helpful?