Deselect Method (WorksheetView)
In This Topic
Deselects from the specified cell range.
Syntax
'Declaration
Public Function Deselect( _
ByVal As Integer, _
ByVal anchorColumn As Integer, _
ByVal As Integer, _
ByVal column As Integer, _
ByVal As Integer, _
ByVal column2 As Integer, _
Optional ByVal As Boolean _
) As Boolean
'Usage
Dim instance As WorksheetView
Dim anchorRow As Integer
Dim anchorColumn As Integer
Dim row As Integer
Dim column As Integer
Dim row2 As Integer
Dim column2 As Integer
Dim notifyUI As Boolean
Dim value As Boolean
value = instance.Deselect(anchorRow, anchorColumn, row, column, row2, column2, notifyUI)
Parameters
- anchorRow
- An integer value indictes the anchor row.
- anchorColumn
- An integer value indictes the anchor column.
- row
- An integer value indictes the top row of deselected cell range.
- column
- An integer value indictes the left column of deselected cell range.
- row2
- An integer value indictes the bottom row of deselected cell range.
- column2
- An integer value indictes the right column of deselected cell range.
- notifyUI
true
if the UI control will be notified; otherwise, false
.
See Also