Added a custom function to engine of C1ExpressionEditor.
Syntax
'Declaration
Public Overloads Sub AddFunction( _
ByVal As ExpressionItem, _
ByVal As System.Func(Of List(Of Object),Object), _
ByVal As System.Integer, _
ByVal As System.Integer _
)
public void AddFunction(
ExpressionItem ,
System.Func<List<object>,object> ,
System.int ,
System.int
)
Parameters
- item
- Provides the function description for the C1ExpressionEditorPanel.
- function
- The delegate that evaluates the function.
- minArgsCount
- Minimum arguments count.
- maxArgsCount
- Maximum arguments count.
See Also