Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.Localization Namespace / LanguagePackage Class / GetArgumentType Method
The function to extract parameter name.
An integer value indicates the parameter's position.
The total number of current passed arguments.
An integer value indicates the order of function overload.


In This Topic
    GetArgumentType Method (LanguagePackage)
    In This Topic
    Gets the parameter name of the specified function.
    Syntax
    'Declaration
     
    
    Public Function GetArgumentType( _
       ByVal function As Function, _
       ByVal index As Integer, _
       ByVal argCount As Integer, _
       Optional ByVal overload As Integer _
    ) As ValueType
    'Usage
     
    
    Dim instance As LanguagePackage
    Dim function As Function
    Dim index As Integer
    Dim argCount As Integer
    Dim overload As Integer
    Dim value As ValueType
     
    value = instance.GetArgumentType(function, index, argCount, overload)
    public ValueType GetArgumentType( 
       Function function,
       int index,
       int argCount,
       int overload
    )

    Parameters

    function
    The function to extract parameter name.
    index
    An integer value indicates the parameter's position.
    argCount
    The total number of current passed arguments.
    overload
    An integer value indicates the order of function overload.

    Return Value

    A string value represents the parameter name.
    See Also