Spread Silverlight Documentation
Column Property (CellDoubleClickEventArgs)
Example 


Gets the column index of the clicked cell.
Syntax
'Declaration
 
Public ReadOnly Property Column As System.Integer
'Usage
 
Dim instance As CellDoubleClickEventArgs
Dim value As System.Integer
 
value = instance.Column
public System.int Column {get;}

Property Value

The column index of the clicked cell.
Example
This example uses the Column property.
private void gcSpreadSheet1_CellClick(object sender, GrapeCity.Windows.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.Windows.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 System.Object, e As GrapeCity.Windows.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 System.Object, e As GrapeCity.Windows.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
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

CellDoubleClickEventArgs Class
CellDoubleClickEventArgs Members

 

 


Copyright © GrapeCity, inc. All rights reserved.