Spread WinForms 15
GrapeCity.CalcEngine Assembly / GrapeCity.CalcEngine Namespace / Function Class / Function Constructor
A string value represents the function name.
An integer values indicates the minimum argument count.
An integer values indicates the maximum argument count.
A FunctionAttributes value indicates attributes of the function.


In This Topic
Function Constructor
In This Topic
Initializes a new instance of the Function class.
Syntax
'Declaration
 
Protected Function New( _
   ByVal functionName As String, _
   ByVal minArgs As Integer, _
   ByVal maxArgs As Integer, _
   ByVal attributes As FunctionAttributes _
)
 
'Usage
 
Dim functionName As String
Dim minArgs As Integer
Dim maxArgs As Integer
Dim attributes As FunctionAttributes
 
Dim instance As New Function(functionName, minArgs, maxArgs, attributes)

Parameters

functionName
A string value represents the function name.
minArgs
An integer values indicates the minimum argument count.
maxArgs
An integer values indicates the maximum argument count.
attributes
A FunctionAttributes value indicates attributes of the function.
See Also