GrapeCity.Xaml.SpreadSheet.UI Namespace > GcSpreadSheet Class : CellDoubleClick Event |
'Declaration Public Event CellDoubleClick As EventHandler(Of CellDoubleClickEventArgs)
'Usage Dim instance As GcSpreadSheet Dim handler As EventHandler(Of CellDoubleClickEventArgs) AddHandler instance.CellDoubleClick, handler
public event EventHandler<CellDoubleClickEventArgs> CellDoubleClick
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.
Property | Description |
---|---|
Column | Gets the column index of the clicked cell. |
Row | Gets the row index of the clicked cell. |
SheetArea | Gets the area the clicked cell is in. |
private void gcSpreadSheet1_CellClick(object sender, GrapeCity.Xaml.SpreadSheet.UI.CellClickEventArgs e) { listBox1.Items.Add(e.ButtonType.ToString()); listBox1.Items.Add(e.Column.ToString()); listBox1.Items.Add(e.Row.ToString()); listBox1.Items.Add(e.SheetArea.ToString()); } private void gcSpreadSheet1_CellDoubleClick(object sender, GrapeCity.Xaml.SpreadSheet.UI.CellDoubleClickEventArgs e) { listBox1.Items.Add(e.Column.ToString()); listBox1.Items.Add(e.Row.ToString()); listBox1.Items.Add(e.SheetArea.ToString()); }
Private Sub gcSpreadSheet1_CellClick(sender As Object, e As GrapeCity.Xaml.SpreadSheet.UI.CellClickEventArgs) Handles gcSpreadSheet1.CellClick ListBox1.Items.Add(e.ButtonType.ToString()) ListBox1.Items.Add(e.Column.ToString()) ListBox1.Items.Add(e.Row.ToString()) ListBox1.Items.Add(e.SheetArea.ToString()) End Sub Private Sub gcSpreadSheet1_CellDoubleClick(sender As Object, e As GrapeCity.Xaml.SpreadSheet.UI.CellDoubleClickEventArgs) Handles gcSpreadSheet1.CellDoubleClick ListBox1.Items.Add(e.Column.ToString()) ListBox1.Items.Add(e.Row.ToString()) ListBox1.Items.Add(e.SheetArea.ToString()) End Sub
Target Platforms: Windows Server 2012, Windows RT