Skip to content

Latest commit

 

History

History
52 lines (33 loc) · 1.38 KB

File metadata and controls

52 lines (33 loc) · 1.38 KB
title Workbook.SheetBeforeDoubleClick event (Excel)
keywords vbaxl10.chm503086
f1_keywords
vbaxl10.chm503086
api_name
Excel.Workbook.SheetBeforeDoubleClick
ms.assetid 69d21025-78ef-deab-39be-b7a092d611f5
ms.date 05/29/2019
ms.localizationpriority medium

Workbook.SheetBeforeDoubleClick event (Excel)

Occurs when any worksheet is double-clicked, before the default double-click action.

Syntax

expression.SheetBeforeDoubleClick (Sh, Target, Cancel)

expression An expression that returns a Workbook object.

Parameters

Name Required/Optional Data type Description
Sh Required Object A Worksheet object that represents the sheet.
Target Required Range The cell nearest to the mouse pointer when the double-click occurred.
Cancel Required Boolean False when the event occurs. If the event procedure sets this argument to True, the default double-click action isn't performed when the procedure is finished.

Remarks

This event doesn't occur on chart sheets.

Example

This example disables the default double-click action.

Private Sub Workbook_SheetBeforeDoubleClick(ByVal Sh As Object, _ 
 ByVal Target As Range, Cancel As Boolean) 
 Cancel = True 
End Sub

[!includeSupport and feedback]