GrapeCity MultiRow Windows Forms Documentation
CellMouseDoubleClick Event


Occurs when a cell is double-clicked with the mouse.
Syntax
<SRDescriptionAttribute("Occurs when a cell within the GcMultiRow control is double-clicked.")>
<SRCategoryAttribute("Mouse")>
Public Event CellMouseDoubleClick As EventHandler(Of CellMouseEventArgs)
Dim instance As GcMultiRow
Dim handler As EventHandler(Of CellMouseEventArgs)
 
AddHandler instance.CellMouseDoubleClick, handler
[SRDescription("Occurs when a cell within the GcMultiRow control is double-clicked.")]
[SRCategory("Mouse")]
public event EventHandler<CellMouseEventArgs> CellMouseDoubleClick
Event Data

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

PropertyDescription
Button (Inherited from System.Windows.Forms.MouseEventArgs)
CellIndexGets the cell index in its parent Section.  
CellNameGets the cell name.  
Clicks (Inherited from System.Windows.Forms.MouseEventArgs)
Delta (Inherited from System.Windows.Forms.MouseEventArgs)
Location (Inherited from System.Windows.Forms.MouseEventArgs)
RowIndexGets the index of the owner Row that the event occurs for.  
ScopeGets the cell area that the event occurs for.  
SectionIndexGets the index of the owner Section that the event occurs for.  
X (Inherited from System.Windows.Forms.MouseEventArgs)
Y (Inherited from System.Windows.Forms.MouseEventArgs)
Remarks

The CellMouseDoubleClick event occurs when the user presses a mouse button twice in quick succession when the cursor is over the control. The time interval that separates two single clicks from a double-click is determined by the mouse settings of the user's operating system.

The following series of events is raised by the control when such a user action takes place:

  1. CellMouseDown event.
  2. CellClick event.
  3. CellMouseClick event.
  4. CellMouseUp event.
  5. CellMouseDown event.
  6. CellDoubleClick event.
  7. CellMouseDoubleClick event.
  8. CellMouseUp event.

Refer to System.Windows.Forms.Control.MouseDoubleClick in the MSDN.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

GcMultiRow Class
GcMultiRow Members

 

 


Copyright © GrapeCity, inc. All rights reserved.