Table of Contents

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

resultType LlParamType

The result type of the function.

decimalPositions int

The number of decimal positions.

parameters int

The number of parameters.

parameter1 object

The first parameter.

parameter2 object

The second parameter.

parameter3 object

The third parameter.

parameter4 object

The fourth parameter.

functionName string

The 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

string

IsValid

Gets or sets a value indicating whether the function syntax is valid.

public bool IsValid { get; set; }

Property Value

bool