sdaiGetAggrElementBoundByItr

The function returns the current value of the real precision, the string width, or the binary width for the current member referenced by the specified iterator.

Syntax

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

[DllImport(enginedll, EntryPoint = "sdaiGetAggrElementBoundByItr")]
public static extern Int32 x86_sdaiGetAggrElementBoundByItr(Int32 iterator);

[DllImport(enginedll, EntryPoint = "sdaiGetAggrElementBoundByItr")]
public static extern Int32 x64_sdaiGetAggrElementBoundByItr(Int64 iterator);

public static Int32 sdaiGetAggrElementBoundByItr(Int64 iterator)
		{
			if (IntPtr.Size == 4)
			{
				var _result = x86_sdaiGetAggrElementBoundByItr((Int32)iterator);
				return _result;
			}
			else
			{
				return x64_sdaiGetAggrElementBoundByItr(iterator);
			}
		}    

Property iterator

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