sdaiUnsetArrayByIndex

The function restores the unset (not assigned a value) status of the member of the specified array at the specified index position.

Syntax

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

[DllImport(enginedll, EntryPoint = "sdaiUnsetArrayByIndex")]
public static extern void x86_sdaiUnsetArrayByIndex(Int32 array, Int32 index);

[DllImport(enginedll, EntryPoint = "sdaiUnsetArrayByIndex")]
public static extern void x64_sdaiUnsetArrayByIndex(Int64 array, Int64 index);

public static void sdaiUnsetArrayByIndex(Int64 array, Int64 index)
		{
			if (IntPtr.Size == 4)
			{
				x86_sdaiUnsetArrayByIndex((Int32)array, (Int32)index);
			}
			else
			{
				x64_sdaiUnsetArrayByIndex(array, index);
			}
		}    

Property array

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

Property index

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