Search
WorkbookView.WorksheetTabClicked Event
See Also
 






Raised when a worksheet tab is clicked with the mouse.

Namespace: MindFusion.Spreadsheet
Assembly: MindFusion.Spreadsheet.WinForms

 Syntax

C#  Copy Code

public event EventHandler<WorksheetMouseEventArgs> WorksheetTabClicked

Visual Basic  Copy Code

Public Event WorksheetTabClicked As EventHandler(Of WorksheetMouseEventArgs)

 Event Data

WorksheetTabClicked event handlers receive an argument of type WorksheetMouseEventArgs.

 Remarks

The X and Y coordinates of the supplied event argument are relative to the WorkbookView.

This event can be used to display a context menu when a tab is right-clicked with the mouse.

 See Also