Spread Windows Forms 15.0
GrapeCity.CalcEngine Assembly / GrapeCity.CalcEngine Namespace / ICalcEngineLanguagePackage Interface / GetParameterName Method
The function to extract parameter name.
An integer value indicates the parameter's position.


In This Topic
    GetParameterName Method (ICalcEngineLanguagePackage)
    In This Topic
    Gets the parameter name of the specified function.
    Syntax
    'Declaration
     
    
    Function GetParameterName( _
       ByVal function As Function, _
       ByVal paramIndex As Integer _
    ) As String
    'Usage
     
    
    Dim instance As ICalcEngineLanguagePackage
    Dim function As Function
    Dim paramIndex As Integer
    Dim value As String
     
    value = instance.GetParameterName(function, paramIndex)
    string GetParameterName( 
       Function function,
       int paramIndex
    )

    Parameters

    function
    The function to extract parameter name.
    paramIndex
    An integer value indicates the parameter's position.

    Return Value

    A string value represents the parameter name.
    See Also