Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / SpreadsheetHelper Class / ContainsSlicer Method


In This Topic
    ContainsSlicer Method
    In This Topic
    Determines whether the specified cell range contains slicer.
    Syntax
    'Declaration
     
    
    Public Shared Function ContainsSlicer( _
       ByVal worksheet As Worksheet, _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal row2 As Integer, _
       ByVal column2 As Integer _
    ) As Boolean
    'Usage
     
    
    Dim worksheet As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim row2 As Integer
    Dim column2 As Integer
    Dim value As Boolean
     
    value = SpreadsheetHelper.ContainsSlicer(worksheet, row, column, row2, column2)
    public static bool ContainsSlicer( 
       Worksheet worksheet,
       int row,
       int column,
       int row2,
       int column2
    )

    Parameters

    worksheet
    row
    column
    row2
    column2

    Return Value

    true if the specified worksheet contains slicer; otherwise, false.
    See Also