Share

acedXrefReload

C++

Acad::ErrorStatus acedXrefReload(
    const ACHAR* XrefBlockname, 
    const bool bQuiet = true, 
    AcDbDatabase* pHostDb = NULL
);

File

acedxref.h

Description

This function reloads the xref block by its given block name. This assumes a valid xref block exists in the database specified by pHostDb (or the current document if pHostDb is null).

Returns Acad::eOk if successful.

Parameters

Parameters Description
XrefBlockname Input xref block name to reload
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?