engiGetNextTypeDeclarationIterator

This call returns next iterator of EXPRESS schema declarations for entities and types. If the input iterator is NULL it returns first iterator. If the input iterator is last it returns NULL. The declaration can be ENTITY, TYPE ENUM, TYPE SELECT, or defined TYPE. Use engiGetDeclarationFromIterator to access the further information.

Syntax

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

[DllImport(enginedll, EntryPoint = "engiGetNextTypeDeclarationIterator")]
public static extern Int32 x86_engiGetNextTypeDeclarationIterator(Int32 model, Int32 iterator);

[DllImport(enginedll, EntryPoint = "engiGetNextTypeDeclarationIterator")]
public static extern Int32 x64_engiGetNextTypeDeclarationIterator(Int64 model, Int64 iterator);

public static Int32 engiGetNextTypeDeclarationIterator(Int64 model, Int64 iterator)
		{
			if (IntPtr.Size == 4)
			{
				var _result = x86_engiGetNextTypeDeclarationIterator((Int32)model, (Int32)iterator);
				return _result;
			}
			else
			{
				return x64_engiGetNextTypeDeclarationIterator(model, iterator);
			}
		}    

Property model

Size: 32 bit / 4 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 iterator

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