Share

acdbSendInitialDwgFileOpenComplete

C++

ACDBCORE2D_PORT Acad::ErrorStatus acdbSendInitialDwgFileOpenComplete(
    AcDbDatabase* pDb
);

File

dbapserv.h

Description

A RealDWG host application can use this function to send notification to clients such as object enablers when it finishes reading the initial set of objects from pDb.

This function allows the host application to supercede the functionality provided by the AcDbDatabase::readDwgFile() function. While readDwgFile() reads a drawing's basic data, a host application may implement functionality requiring that it read additional custom objects. This function allows the host application to notify others when it has finished reading.

This function always returns Acad::eOk.

Parameters

Parameters Description
pDb Input pointer to database that is being opened

Was this information helpful?