Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.UI Namespace / UIHelper Class / GetPickupDropDownList Method
The current editing worksheet.
The editing row.
The editing column.


In This Topic
    GetPickupDropDownList Method
    In This Topic
    Gets the pickup drop down list.
    Syntax
    'Declaration
     
    
    Public Shared Function GetPickupDropDownList( _
       ByVal worksheet As Worksheet, _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As List(Of String)
    'Usage
     
    
    Dim worksheet As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim value As List(Of String)
     
    value = UIHelper.GetPickupDropDownList(worksheet, row, column)
    public static List<string> GetPickupDropDownList( 
       Worksheet worksheet,
       int row,
       int column
    )

    Parameters

    worksheet
    The current editing worksheet.
    row
    The editing row.
    column
    The editing column.

    Return Value

    A string array represents the pickup drop down list.
    See Also