Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.CalcEngine Namespace / IIntelliSenseFunction Interface / GetArgumentCount Method
The total number of current passed arguments.
The order of function overload.
true if the parameter count is maximum; otherwise, more parameter can be passed.


In This Topic
    GetArgumentCount Method (IIntelliSenseFunction)
    In This Topic
    Gets the total number of parameters that display in the intelli-sense tooltip.
    Syntax
    'Declaration
     
    
    Function GetArgumentCount( _
       ByVal argsCount As Integer, _
       ByVal overload As Integer, _
       ByRef limited As Boolean _
    ) As Integer
    'Usage
     
    
    Dim instance As IIntelliSenseFunction
    Dim argsCount As Integer
    Dim overload As Integer
    Dim limited As Boolean
    Dim value As Integer
     
    value = instance.GetArgumentCount(argsCount, overload, limited)
    int GetArgumentCount( 
       int argsCount,
       int overload,
       out bool limited
    )

    Parameters

    argsCount
    The total number of current passed arguments.
    overload
    The order of function overload.
    limited
    true if the parameter count is maximum; otherwise, more parameter can be passed.

    Return Value

    The total number of parameters that display in the intelli-sense tooltip.
    See Also