Share

acedXrefCreateBlockname

C++

inline Acad::ErrorStatus acedXrefCreateBlockname(
    const ACHAR* XrefPathname, 
    ACHAR * & XrefBlockname
);

File

acedxref.h

Description

Deprecated. Accepts an xref file pathname and returns an internally allocated block name symbol string buffer that follows the AutoCAD policy rules for its creation. Typically, this is the filename of the xref file.

Returns an error if the block name cannot be created. Returns Acad::eOk if successful. The block name string's buffer must be released using acutDelString().

Parameters

Parameters Description
XrefPathname Input pointer to an xref file pathname
XrefBlockname Returns a pointer to a copy of the block name symbol string

Use Instead

ACCORE_PORT Acad::ErrorStatus acedXrefCreateBlockname(const ACHAR* XrefPathname, AcString & XrefBlockname);

Was this information helpful?