Share

AcDbSymbolUtilities::Services::getBlockNameFromInsertPathName

C++

Acad::ErrorStatus getBlockNameFromInsertPathName(
    ACHAR *& pBlockName, 
    const ACHAR * pathName
) const;

Description

Deprecated. Extract a suitable block name from a pathname. This method calls the getSymbolNameFromPathName() method with "DXF;DWG" as the list of extensions to check.

Parameters

Parameters Description
pBlockName Output pointer to copy of block name
pathName Input pointer to path name to examine

Returns

Acad::eOk is successful.

Links

AcDbSymbolUtilities::Services, AcDbSymbolUtilities Namespace

Use Instead

virtual Acad::ErrorStatus getBlockNameFromInsertPathName(AcString & sBlockName, const ACHAR * pathName) const = 0;

Was this information helpful?