Spread Windows Forms 9.0 Product Documentation
Changed Event (SheetView)
Example 


Occurs when a change is made to the sheet that may require the entire sheet to be repainted (as with DefaultStyle or AlternatingRows).
Syntax
'Declaration
 
Public Event Changed As SheetViewEventHandler
'Usage
 
Dim instance As SheetView
Dim handler As SheetViewEventHandler
 
AddHandler instance.Changed, handler
public event SheetViewEventHandler Changed
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.

PropertyDescription
ColumnGets the column index.  
ColumnCountGets the number of columns.  
RowGets the row index.  
RowCountGets the number of rows.  
Example

This example illustrates the use of the event by returning the column in which the change to the sheet occurred.

private void fpSpread1_Sheet1_Changed(object sender, FarPoint.Win.Spread.SheetViewEventArgs e)
{
    label1.Text = e.Column.ToString();
}
Private Sub FpSpread1_Sheet1_Changed(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.SheetViewEventArgs) Handles FpSpread1_Sheet1.Changed
    Label1.Text = e.Column.ToString()
End Sub
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

SheetView Class
SheetView Members

 

 


Copyright © GrapeCity, inc. All rights reserved.