Table of Contents

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

int

FunctionName

Gets the name of the function being evaluated.

public string FunctionName { get; }

Property Value

string

Parameter1

Gets the value of the first parameter.

public object? Parameter1 { get; }

Property Value

object

Parameter2

Gets the value of the second parameter.

public object? Parameter2 { get; }

Property Value

object

Parameter3

Gets the value of the third parameter.

public object? Parameter3 { get; }

Property Value

object

Parameter4

Gets the value of the fourth parameter.

public object? Parameter4 { get; }

Property Value

object

Parameters

Gets the number of parameters.

public int Parameters { get; }

Property Value

int

ResultType

Gets or sets the result type of the function evaluation.

public LlParamType ResultType { get; set; }

Property Value

LlParamType

ResultValue

Gets or sets the result value of the function evaluation.

public object? ResultValue { get; set; }

Property Value

object