Class DesignerFunction
- Namespace
- combit.Reporting
- Assembly
- combit.ListLabel31.CrossPlatform.dll
Represents a user provided designer function.
public class DesignerFunction
- Inheritance
-
DesignerFunction
- Inherited Members
Constructors
DesignerFunction()
Initializes a new instance of the DesignerFunction class.
public DesignerFunction()
Properties
Description
Gets or sets the description of the designer function.
public string Description { get; set; }
Property Value
FunctionName
Gets or sets the name of the designer function.
public string FunctionName { get; set; }
Property Value
GroupName
Gets or sets the group name of the designer function.
public string GroupName { get; set; }
Property Value
IsConstantForConstantData
Gets or sets a value indicating whether the designer function is constant for constant data.
public bool IsConstantForConstantData { get; set; }
Property Value
MaximumParameters
Gets or sets the maximum number of parameters the designer function can have.
public int MaximumParameters { get; set; }
Property Value
MinimalParameters
Gets or sets the minimal number of parameters the designer function can have.
public int MinimalParameters { get; set; }
Property Value
Parameter1
Gets or sets the first parameter of the designer function.
public DesignerFunctionParameter Parameter1 { get; set; }
Property Value
Parameter2
Gets or sets the second parameter of the designer function.
public DesignerFunctionParameter Parameter2 { get; set; }
Property Value
Parameter3
Gets or sets the third parameter of the designer function.
public DesignerFunctionParameter Parameter3 { get; set; }
Property Value
Parameter4
Gets or sets the fourth parameter of the designer function.
public DesignerFunctionParameter Parameter4 { get; set; }
Property Value
ResultType
Gets or sets the result type of the designer function.
public LlParamType ResultType { get; set; }
Property Value
Visible
Gets or sets a value indicating whether the designer function is visible.
public bool Visible { get; set; }
Property Value
Events
CheckFunctionSyntax
Occurs when the syntax of the designer function is checked.
public event CheckFunctionSyntaxEventHandler? CheckFunctionSyntax
Event Type
EvaluateFunction
Occurs when the designer function is evaluated.
public event EvaluateFunctionEventHandler? EvaluateFunction
Event Type
ParameterAutoComplete
Occurs when the parameter auto-complete is triggered for the designer function.
public event ParameterAutoCompleteEventHandler? ParameterAutoComplete