Class CheckFunctionSyntaxEventArgs
- Namespace
- combit.Reporting
- Assembly
- combit.ListLabel31.CrossPlatform.dll
Represents the event arguments for checking the syntax of a function. Just added for compatibility reasons, only use with DesignerFunction.
public class CheckFunctionSyntaxEventArgs : EvaluateFunctionEventArgs
- Inheritance
-
CheckFunctionSyntaxEventArgs
- Inherited Members
Constructors
CheckFunctionSyntaxEventArgs(LlParamType, int, int, object, object, object, object, string)
Initializes a new instance of the CheckFunctionSyntaxEventArgs class.
public CheckFunctionSyntaxEventArgs(LlParamType resultType, int decimalPositions, int parameters, object parameter1, object parameter2, object parameter3, object parameter4, string functionName)
Parameters
resultTypeLlParamTypeThe result type of the function.
decimalPositionsintThe number of decimal positions.
parametersintThe number of parameters.
parameter1objectThe first parameter.
parameter2objectThe second parameter.
parameter3objectThe third parameter.
parameter4objectThe fourth parameter.
functionNamestringThe name of the function.
Properties
ErrorText
Gets or sets the error text if the function syntax is invalid.
public string ErrorText { get; set; }
Property Value
IsValid
Gets or sets a value indicating whether the function syntax is valid.
public bool IsValid { get; set; }