Occurs when a change is made to a cell or range of cells on this sheet that may require the cell or range of cells be repainted.
Syntax
Event Data
The event handler receives an argument of type SheetViewEventArgs containing data related to this event. The following SheetViewEventArgs properties provide information specific to this event.
Property | Description |
---|
Column | Gets the column index. |
ColumnCount | Gets the number of columns. |
Row | Gets the row index. |
RowCount | Gets the number of rows. |
Remarks
Example
This example illustrates the use of the event by returning the column when the cell changes.
C# | Copy Code |
---|
private void sheetView1_CellChanged(object sender, FarPoint.Win.Spread.SheetViewEventArgs e)
{
listBox1.Items.Add(e.Column.ToString());
} |
Visual Basic | Copy Code |
---|
Private Sub SheetView1_CellChanged(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.SheetViewEventArgs) Handles SheetView1.CellChanged
ListBox1.Items.Add(e.Column.ToString())
End Sub
|
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
See Also