engiGetAttrDerivedBN

This call can be used to check if an attribute is defined schema wise in the context of a certain entity. Technically engiGetAttrDerivedBN will transform into the following call

    engiGetAttrDerived(
            entity,
            sdaiGetAttrDefinition(
                    entity,
                    attributeName
                )
        );

Syntax

public const string ifcenginedll = @"ifcengine.dll";

[DllImport(IFCEngineDLL, EntryPoint = "engiGetAttrDerivedBN")]
public static extern Int32 engiGetAttrDerivedBN(int_t entity, string attributeName);

[DllImport(IFCEngineDLL, EntryPoint = "engiGetAttrDerivedBN")]
public static extern Int32 engiGetAttrDerivedBN(int_t entity, byte[] attributeName);    

Property entity

Size: 32 bit / 4 byte (value)
...

Property attributeName

Size: 32 bit / 4 byte (reference)
...