Class EvaluateFunctionEventArgs
- Namespace
- combit.Reporting
- Assembly
- combit.ListLabel31.CrossPlatform.dll
Provides data for the EvaluateFunction event.
public class EvaluateFunctionEventArgs : EventArgs
- Inheritance
-
EvaluateFunctionEventArgs
- Derived
- Inherited Members
Properties
DecimalPositions
Gets or sets the number of decimal positions.
public int DecimalPositions { get; set; }
Property Value
FunctionName
Gets the name of the function being evaluated.
public string FunctionName { get; }
Property Value
Parameter1
Gets the value of the first parameter.
public object? Parameter1 { get; }
Property Value
Parameter2
Gets the value of the second parameter.
public object? Parameter2 { get; }
Property Value
Parameter3
Gets the value of the third parameter.
public object? Parameter3 { get; }
Property Value
Parameter4
Gets the value of the fourth parameter.
public object? Parameter4 { get; }
Property Value
Parameters
Gets the number of parameters.
public int Parameters { get; }
Property Value
ResultType
Gets or sets the result type of the function evaluation.
public LlParamType ResultType { get; set; }
Property Value
ResultValue
Gets or sets the result value of the function evaluation.
public object? ResultValue { get; set; }