engiGetAttrTypeBN
engiGetAttrType(
sdaiGetAttrDefinition(
entity,
attributeName
)
);
Syntax
// // Strong typing definition // SdaiPrimitiveType engiGetAttrTypeBN( SdaiEntity entity, SdaiString attributeName ); static inline SdaiPrimitiveType engiGetAttrTypeBN( SdaiEntity entity, char * attributeName ) { return engiGetAttrTypeBN( entity, (SdaiString) attributeName ); } // // Weak typing definition // int_t __declspec(dllexport) __stdcall engiGetAttrTypeBN( int_t entity, const char * attributeName ); static inline int_t engiGetAttrTypeBN( int_t entity, char * attributeName ) { return engiGetAttrTypeBN( entity, (const SdaiString) attributeName ); }