HandleMethod

Applies to:Fast Math Parser
Class:uCalc.ParsedExpr
Returns the handle of the parsed expression
Syntax
Handle()
Remarks
This numeric value represents the Pointer that uCalc uses internally for the ParsedExpr object. If you are iterating through a series of objects, such as with NextOverload, you may check Handle() to see when it becomes NULL (or 0) to know when to stop.
DLL import code
<DllImport(uCalcDLL, CharSet:=CharSet.Ansi, CallingConvention:=CallingConvention.Cdecl, EntryPoint:="Handle_Overload_ParsedExpr")> _

Private Function Handle_Overload_ParsedExpr__(ByVal ExprHandle As IntPtr) As  IntPtr
End Function
            
[DllImport(uCalcDLL, CharSet=CharSet.Ansi, CallingConvention=CallingConvention.Cdecl, EntryPoint="Handle_Overload_ParsedExpr")]

protected static extern  IntPtr Handle_Overload_ParsedExpr_(IntPtr ExprHandle);
            
{DLLImport}function Handle_Overload_ParsedExpr__(ExprHandle: System.Pointer):  System.Pointer; cdecl; external uCalcDLL name 'Handle_Overload_ParsedExpr';

            
typedef  void * (* __Handle_Overload_ParsedExpr)(void *ExprHandle); 

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

static void *   Handle_Overload_ParsedExpr_(void *  ExprHandle);
            
Prev | Next