Spread Silverlight Documentation
CellDoubleClick Event (SheetView)


GrapeCity.Windows.SpreadSheet.UI Namespace > SheetView Class : CellDoubleClick Event
Occurs when the user presses down the left mouse button twice (double-clicks) in a cell.
Syntax
'Declaration
 
Public Event CellDoubleClick As System.EventHandler(Of CellDoubleClickEventArgs)
'Usage
 
Dim instance As SheetView
Dim handler As System.EventHandler(Of CellDoubleClickEventArgs)
 
AddHandler instance.CellDoubleClick, handler
public event System.EventHandler<CellDoubleClickEventArgs> CellDoubleClick
Event Data

The event handler receives an argument of type CellDoubleClickEventArgs containing data related to this event. The following CellDoubleClickEventArgs properties provide information specific to this event.

PropertyDescription
Gets the column index of the clicked cell.  
Gets the row index of the clicked cell.  
Gets the area the clicked cell is in.  
See Also