Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.Localization Namespace / LanguagePackage Class / GetArgumentOptions Method
The function to extract information.
An integer value indicates position of the argument.


In This Topic
    GetArgumentOptions Method (LanguagePackage)
    In This Topic
    Gets an array of option values for the specified argument.
    Syntax
    'Declaration
     
    
    Public Overridable Function GetArgumentOptions( _
       ByVal function As Function, _
       ByVal index As Integer _
    ) As Object()
    'Usage
     
    
    Dim instance As LanguagePackage
    Dim function As Function
    Dim index As Integer
    Dim value() As Object
     
    value = instance.GetArgumentOptions(function, index)
    public virtual object[] GetArgumentOptions( 
       Function function,
       int index
    )

    Parameters

    function
    The function to extract information.
    index
    An integer value indicates position of the argument.

    Return Value

    An array of argument's option values; null if there is no option value.
    Remarks

    If the option values are strings, the returned data type is string[]

    If the option values are numeric values, the returned data is %Tuple<object, string, string>[]%

    See Also