C++
Acad::ErrorStatus acedSkipXrefNotification( AcDbDatabase* pHostDb, const ACHAR* xrefName );
File
acedxref.h
Description
This function directs the Xref Notification feature to ignore the update of the Xref, identified by its name, xrefName, for the specified host database, pHostDb. In effect, the Xref is treated as if it had been reloaded as of the time this function is called.
Returns Acad::eOk if the xref notification will be skipped for the specified xref.
Returns Acad::eNotApplicable if the XREFNOTIFY system variable is 0 (indicating xref notification is disabled).
Returns Acad::eInvalidInput if the pHostDb parameter is NULL or xrefName is the empty string.
Returns Acad::eKeyNotFound if the xref cannot be found.
Parameters
Parameters | Description |
---|---|
pHostDb | Input the host database base which references the specified Xref. |
xrefName | Input the block name of the external reference within the specified host database, for which the xref notification is to be skipped. |