Share

acedXrefReload

C++

Acad::ErrorStatus acedXrefReload(
    const AcDbObjectIdArray& XrefBTRids, 
    bool bQuiet = true, 
    AcDbDatabase* pHostDb = NULL
);

File

acedxref.h

Description

This function processes the list of xref block table record IDs for xref reload. It is assumed that each xref block table record ID references an xref drawing file that can be reloaded to the database specified by pHostDb (or the current drawing if pHostDb is null). It has the same functionality as the AutoCAD XREF subcommand for Reload.

Returns Acad::eOk if successful.

Parameters

Parameters Description
XrefBTRids List of BTR IDs to be xref reloaded
bQuiet Input Boolean indicating whether to suppress displaying error and warning messages
pHostDb Pointer to the host database for the reload operation

Was this information helpful?