TransformMethod

Applies to:uCalc Transform
Class:uCalc.uCalcTransform
Performs the transformation of text
Syntax
Transform()
Remarks
Once all the rules and parameters are set, you can call this function in order to perform the text transformation.

DLL import code
<DllImport(uCalcDLL, CharSet:=CharSet.Ansi, CallingConvention:=CallingConvention.Cdecl, EntryPoint:="Transform")> _

Private Sub Transform__(ByVal TransformHandle As IntPtr)
End Sub
            
[DllImport(uCalcDLL, CharSet=CharSet.Ansi, CallingConvention=CallingConvention.Cdecl, EntryPoint="Transform")]

protected static extern  void Transform_(IntPtr TransformHandle);
            
{DLLImport}procedure Transform__(TransformHandle: System.Pointer); cdecl; external uCalcDLL name 'Transform';

            
typedef  void (* __Transform)(void *TransformHandle); 

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

static void Transform_(void *  TransformHandle);
            
Prev | Next