ErrorSetExpressionMethod
Sets a new expression after an error is raised
Syntax
ErrorSetExpression(Expression)
Parameters
Expression
String
Error expression
DLL import code
<DllImport(uCalcDLL, CharSet:=CharSet.Ansi, CallingConvention:=CallingConvention.Cdecl, EntryPoint:="ErrorSetExpression")> _
Private Sub ErrorSetExpression__(ByVal uCalcHandle As IntPtr,ByVal Expression As String)
End Sub
[DllImport(uCalcDLL, CharSet=CharSet.Ansi, CallingConvention=CallingConvention.Cdecl, EntryPoint="ErrorSetExpression")]
protected static extern void ErrorSetExpression_(IntPtr uCalcHandle, string Expression);
{DLLImport}procedure ErrorSetExpression__(uCalcHandle: System.Pointer;Expression: AnsiString); cdecl; external uCalcDLL name 'ErrorSetExpression';
typedef void (* __ErrorSetExpression)(void *uCalcHandle, CONSTCHAR Expression );
[DllImport(uCalcLib, CharSet=CharSet::Ansi, CallingConvention=CallingConvention::Cdecl, EntryPoint = "ErrorSetExpression")]
static void ErrorSetExpression_(void * uCalcHandle, MARSHALSTR Expression);