Spread WPF 17
GrapeCity.Excel Namespace / IExcelWriter Interface / GetSelectionList Method
The zero based sheet index used to locate the IExcelWorksheet instance
A collection of the all selections defined in the current sheet
Active cell location
Type of the pane


In This Topic
    GetSelectionList Method
    In This Topic
    Gets the selection list of the specified sheet
    Syntax
    'Declaration
     
    Function GetSelectionList( _
       ByVal sheet As Short, _
       ByVal selectionList As List(Of GcRect), _
       ByRef activeCell As GcPoint, _
       ByRef paneType As PaneType _
    ) As Boolean
    'Usage
     
    Dim instance As IExcelWriter
    Dim sheet As Short
    Dim selectionList As List(Of GcRect)
    Dim activeCell As GcPoint
    Dim paneType As PaneType
    Dim value As Boolean
     
    value = instance.GetSelectionList(sheet, selectionList, activeCell, paneType)
    bool GetSelectionList( 
       short sheet,
       List<GcRect> selectionList,
       ref GcPoint activeCell,
       ref PaneType paneType
    )

    Parameters

    sheet
    The zero based sheet index used to locate the IExcelWorksheet instance
    selectionList
    A collection of the all selections defined in the current sheet
    activeCell
    Active cell location
    paneType
    Type of the pane

    Return Value

    true if the selection is not null, otherwise, false
    See Also