Spread Windows Forms 6.0 Product Documentation
Changed Event
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class : Changed Event


Glossary Item Box

Occurs when a change is made to the sheet that may require the entire sheet to be repainted (as with DefaultStyle or AlternatingRows).

Syntax

Visual Basic (Declaration) 
Public Event Changed As SheetViewEventHandler
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim handler As SheetViewEventHandler
 
AddHandler instance.Changed, handler
C# 
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
Column Gets the column index.
ColumnCount Gets the number of columns.
Row Gets the row index.
RowCount Gets 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.

C#Copy Code
private void fpSpread1_Sheet1_Changed(object sender, FarPoint.Win.Spread.SheetViewEventArgs e)
{
    label1.Text = e.Column.ToString();
}
Visual BasicCopy Code
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 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

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.