Spread WPF 17
GrapeCity.CalcEngine.Expressions Namespace / CalcFunctionExpression Class / GetArg Method
Index of the parameter (or argument).


In This Topic
    GetArg Method
    In This Topic
    Returns the specified parameter being passed to the function.
    Syntax
    'Declaration
     
    Public Function GetArg( _
       ByVal i As Integer _
    ) As CalcExpression
    'Usage
     
    Dim instance As CalcFunctionExpression
    Dim i As Integer
    Dim value As CalcExpression
     
    value = instance.GetArg(i)
    public CalcExpression GetArg( 
       int i
    )

    Parameters

    i
    Index of the parameter (or argument).

    Return Value

    The parameter at the specified index.
    See Also