CFx SDK Documentation 2024 SP0
|
#include <FdField.h>
Public Member Functions | |
ODRX_DECLARE_MEMBERS (OdFdFieldEnginePE) | |
virtual OdResult | getSheetSetProperty (OdString &propValue, OdDbField *pField, OdDbDatabase *pDb)=0 |
virtual bool | parseObjProp (const OdString &prop, OdDbDatabase *pDb, OdDbObjectId &objId, OdString &propName)=0 |
virtual bool | getObjPropValue (const OdString &propName, OdInt32 paramId, const OdDbObjectId &objId, OdFdFieldResult &result)=0 |
virtual OdDbDatabase * | getCurrentDb ()=0 |
virtual OdString | getFileName (OdDbDatabase *pDb)=0 |
virtual void | getLispVariable (const OdString &lispVar, OdFieldValue &fValue)=0 |
virtual OdDbObjectId | getOwnerTable (const OdDbField *field)=0 |
Public Member Functions inherited from OdRxObject | |
ODRX_HEAP_OPERATORS () | |
OdRxObject () | |
virtual | ~OdRxObject () |
virtual OdRxObject * | queryX (const OdRxClass *pClass) const |
virtual OdRxObject * | x (const OdRxClass *pClass) const |
virtual OdRxClass * | isA () const |
virtual void | addRef ()=0 |
virtual void | release ()=0 |
virtual long | numRefs () const |
bool | isKindOf (const OdRxClass *pClass) const |
virtual OdRxObjectPtr | clone () const |
virtual void | copyFrom (const OdRxObject *pSource) |
virtual OdRx::Ordering | comparedTo (const OdRxObject *pOther) const |
virtual bool | isEqualTo (const OdRxObject *pOther) const |
Additional Inherited Members | |
Static Public Member Functions inherited from OdRxObject | |
static OdRxObjectPtr | cast (const OdRxObject *pointer) |
static OdRxClass * | desc () |
This abstract class is the Field Engine Protocol Extension class. Its purpose is to provide services necessary for fields evaluation implemented at the host application level.
<group Other_Classes>
|
pure virtual |
Retrieves the current database of the host application. The purpose of the function is to allow using the current database's properties when processing NDBRO fields.
|
pure virtual |
Returns the name of the file associated with this database object.
pDb | [in] Database. |
|
pure virtual |
Retrieves the lisp variable value.
lispVar | [in] Lisp variable name. |
fValue | [out] Field value where the result is stored. |
|
pure virtual |
Retrieves the object property value.
propName | [in] Property name. |
paramId | [in] Optional dynamic block parameter ID (0 by default). |
objId | [in] Object ID. |
result | [out] Resulting property value. |
|
pure virtual |
|
pure virtual |
Retrieves a sheet set property value.
propValue | [out] Resulting property value. |
pField | [in] Field defining the requested property, containing at least a "SheetSetPropertyName" data item. |
pDb | [in] Database. |
OdFdFieldEnginePE::ODRX_DECLARE_MEMBERS | ( | OdFdFieldEnginePE | ) |
|
pure virtual |
Parses the property string of the ObjProp field code and retrieves object ID and property type.
prop | [in] Property string of the format: "Object(%<\_ObjId XXX>%).PropName". |
pDb | [in] Database. |
objId | [out] Object ID. |
propName | [out] Property name. |