DefaultMethod

Applies to:uCalc Transform
Class:uCalc
Returns default settings
Syntax
Default()
Remarks
The Item returned contains the default settings for the current uCalc instance. To define new settings, use Define("Default ~~ ...") .
DLL import code
<DllImport(uCalcDLL, CharSet:=CharSet.Ansi, CallingConvention:=CallingConvention.Cdecl, EntryPoint:="Default")> _

Private Function Default__(ByVal uCalcHandle As IntPtr) As IntPtr
End Function
            
[DllImport(uCalcDLL, CharSet=CharSet.Ansi, CallingConvention=CallingConvention.Cdecl, EntryPoint="Default")]

protected static extern IntPtr Default_(IntPtr uCalcHandle);
            
{DLLImport}function Default__(uCalcHandle: System.Pointer): System.Pointer; cdecl; external uCalcDLL name 'Default';

            
typedef uCalcPtr (* __Default)(void *uCalcHandle); 

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

static uCalcPtr Default_(void *  uCalcHandle);
            
See also
SetDefault
Prev | Next