This call returns a specific entity based on an index, the index needs to be 0 or higher but lower then the number of entities in the loaded schema.
Syntax
//
// Strong typing definition
//
SdaiEntity engiGetEntityElement(
SdaiModel model,
SdaiInteger index
);
//
// Weak typing definition
//
int_t __declspec(dllexport) __stdcall engiGetEntityElement(
int_t model,
int_t index
);
Property model
Size: 64 bit / 8 byte (value)
The handle to the model. The model handle is static during its existance. Several models can be opened simultaniously within one session. Different models are always independent, threads are allowed to be running on different models simultaniously.
Property index
Size: 64 bit / 8 byte (value)
...