Share

acedXrefResolve

C++

ACCORE_PORT 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).

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

Returns

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.

Previous Declaration

AutoCAD 2025 and Earlier

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

Was this information helpful?