NameMethod

Applies to:Fast Math Parser
Class:uCalc.Item
Returns the name of the uCalc.Item
Syntax
Name()
Remarks
Items such as functions, operators, variables, etc generally are given a name when they are defined. That name can be retried with this function.
DLL import code
<DllImport(uCalcDLL, CharSet:=CharSet.Ansi, CallingConvention:=CallingConvention.Cdecl, EntryPoint:="Name_Overload_Item")> _

Private Function Name_Overload_Item__(ByVal ItemHandle As IntPtr) As IntPtr
End Function
            
[DllImport(uCalcDLL, CharSet=CharSet.Ansi, CallingConvention=CallingConvention.Cdecl, EntryPoint="Name_Overload_Item")]

protected static extern  IntPtr Name_Overload_Item_(IntPtr ItemHandle);
            
{DLLImport}function Name_Overload_Item__(ItemHandle: System.Pointer):  PAnsiChar; cdecl; external uCalcDLL name 'Name_Overload_Item';

            
typedef const char * (* __Name_Overload_Item)(void *ItemHandle); 

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

static STR_RETURN Name_Overload_Item_(void *  ItemHandle);
            
Prev | Next