engiIsAttrInverse

This call can be used to check if an attribute is an inverse relation

Syntax

public const string enginedll = @"engine.dll";

[DllImport(enginedll, EntryPoint = "engiIsAttrInverse")]
public static extern bool x86_engiIsAttrInverse(Int32 attribute);

[DllImport(enginedll, EntryPoint = "engiIsAttrInverse")]
public static extern bool x64_engiIsAttrInverse(Int64 attribute);

public static bool engiIsAttrInverse(Int64 attribute)
		{
			if (IntPtr.Size == 4)
			{
				var _result = x86_engiIsAttrInverse((Int32)attribute);
				return _result;
			}
			else
			{
				return x64_engiIsAttrInverse(attribute);
			}
		}    

Property attribute

Size: 64 bit / 8 byte (reference)
...