Share

AcFdExtractData

C++

inline bool AcFdExtractData(
    AcDbField* pField, 
    AcDbObjectId& objId, 
    ACHAR *& pszPropName
);

File

AcFdUtil.h

Description

Extracts object property field components from the specified field object. The pszPropName pointer is dynamically allocated and the caller is responsible for releasing it using acutDelString().

Returns true if at least one data component was extracted. Returns false if no data was found.

Parameters

Parameters Description
pField Input field for which data will be extracted
objId Output reference to receive the object ID
pszPropName Output pointer to receive the property name

Was this information helpful?