Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.Localization Namespace / LanguagePackage Class / GetArgumentCount Method
The function to extract information.
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 (LanguagePackage)
    In This Topic
    Gets the total number of parameters that display in the intelli-sense tooltip.
    Syntax
    'Declaration
     
    
    Public Shared Function GetArgumentCount( _
       ByVal function As Function, _
       ByVal argCount As Integer, _
       ByVal overload As Integer, _
       ByRef limited As Boolean _
    ) As Integer
    'Usage
     
    
    Dim function As Function
    Dim argCount As Integer
    Dim overload As Integer
    Dim limited As Boolean
    Dim value As Integer
     
    value = LanguagePackage.GetArgumentCount(function, argCount, overload, limited)
    public static int GetArgumentCount( 
       Function function,
       int argCount,
       int overload,
       out bool limited
    )

    Parameters

    function
    The function to extract information.
    argCount
    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