Share

acdbGetMotionPathDictionary

C++

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

File

dbMotionPath.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 motion 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 motion path dictionary
mode Input requested open mode

Was this information helpful?