Share

acedXrefResolve

C++

Acad::ErrorStatus acedXrefResolve(
    AcDbDatabase* pHostDb, 
    const bool bQuiet = true
);

File

acedxref.h

Description

This function resolves existing xrefs in pHostDb. pHostDb must not point to an AcDbDatabase that is the primary database for a document in AutoCAD (i.e., it must not point to a database that is loaded in the AutoCAD editor). Returns Acad::eOk if successful. Returns Acad::eInvalidInput if pHostDb is null or if pHostDb is a pointer to the primary database for a document.

Parameters

Parameters Description
pHostDb Input pointer to the AcDbDatabase to be used as the host
bQuiet Optional flag to suppress output messages to the command line

Was this information helpful?