GetItemMethod

Applies to:Fast Math Parser
Class:uCalc.DataType
Returns the uCalc.Item handle of the data type
Syntax
GetItem()
Remarks
Each data type object can also be represented as a uCalc object by using this return value.
DLL import code
<DllImport(uCalcDLL, CharSet:=CharSet.Ansi, CallingConvention:=CallingConvention.Cdecl, EntryPoint:="GetItem")> _

Private Function GetItem__(ByVal DataTypeHandle As IntPtr) As IntPtr
End Function
            
[DllImport(uCalcDLL, CharSet=CharSet.Ansi, CallingConvention=CallingConvention.Cdecl, EntryPoint="GetItem")]

protected static extern IntPtr GetItem_(IntPtr DataTypeHandle);
            
{DLLImport}function GetItem__(DataTypeHandle: System.Pointer): System.Pointer; cdecl; external uCalcDLL name 'GetItem';

            
typedef uCalcPtr (* __GetItem)(void *DataTypeHandle); 

            
[DllImport(uCalcLib, CharSet=CharSet::Ansi, CallingConvention=CallingConvention::Cdecl, EntryPoint = "GetItem")]

static uCalcPtr GetItem_(void *  DataTypeHandle);
            
Prev | Next