HandleMethod
    
    
    Returns the handle of the current 
uCalc.Item object
 
    
    
    
      DLL import code
      
        
        
          
            
<DllImport(uCalcDLL, CharSet:=CharSet.Ansi, CallingConvention:=CallingConvention.Cdecl, EntryPoint:="Handle_Overload_Item")> _
Private Function Handle_Overload_Item__(ByVal ItemHandle As IntPtr) As  IntPtr
End Function
            
          
         
        
          
            
[DllImport(uCalcDLL, CharSet=CharSet.Ansi, CallingConvention=CallingConvention.Cdecl, EntryPoint="Handle_Overload_Item")]
protected static extern  IntPtr Handle_Overload_Item_(IntPtr ItemHandle);
            
          
         
        
          
            
{DLLImport}function Handle_Overload_Item__(ItemHandle: System.Pointer):  System.Pointer; cdecl; external uCalcDLL name 'Handle_Overload_Item';
            
          
         
        
          
            
typedef  void * (* __Handle_Overload_Item)(void *ItemHandle); 
            
          
         
        
          
            
[DllImport(uCalcLib, CharSet=CharSet::Ansi, CallingConvention=CallingConvention::Cdecl, EntryPoint = "Handle_Overload_Item")]
static void *   Handle_Overload_Item_(void *  ItemHandle);