In This Topic
Determines whether the specified cell range contains slicer.
Syntax
'Declaration
Public Shared Function ContainsSlicer( _
ByVal As Worksheet, _
ByVal As Integer, _
ByVal column As Integer, _
ByVal 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 ,
int ,
int column,
int ,
int column2
)
Parameters
- worksheet
- row
- column
- row2
- column2
Return Value
true
if the specified worksheet contains slicer; otherwise, false
.
See Also