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


Glossary Item Box

Occurs when the user makes a change to the model that affects the axis (row or column) of the sheet.

Syntax

Visual Basic (Declaration) 
Public Event Changed As SheetAxisModelEventHandler
Visual Basic (Usage)Copy Code
Dim instance As BaseSheetAxisModel
Dim handler As SheetAxisModelEventHandler
 
AddHandler instance.Changed, handler
C# 
public event SheetAxisModelEventHandler Changed

Event Data

The event handler receives an argument of type SheetAxisModelEventArgs containing data related to this event. The following SheetAxisModelEventArgs properties provide information specific to this event.

PropertyDescription
Count Gets the number of items being affected.
Index Gets the index where the event happens.
Type Gets the event type.

Remarks

When a class is derived from this abstract class, this event occurs after the user makes a change to the model that affects the axis (row or column) of the sheet.

Example

This example causes the Changed event to occur for the model.
C#Copy Code
private void button1_Click(object sender, System.EventArgs e)
{
FarPoint.Win.Spread.Model.BaseSheetAxisModel model;
model = (FarPoint.Win.Spread.Model.BaseSheetAxisModel)fpSpread1.ActiveSheet.Models.ColumnAxis; 
model.SetSize(0, 120); 
}

private void fpSpread1_AxisModelChanged(object sender, FarPoint.Win.Spread.Model.SheetAxisModelEventArgs e) 
{ 
fpSpread1.ActiveSheet.SetValue(0,0,"Fired"); 
} 
Visual BasicCopy Code
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim modelAs FarPoint.Win.Spread.Model.BaseSheetAxisModel
model = FpSpread1.ActiveSheet.Models.ColumnAxis
model.SetSize(0, 120)
End Sub

Private Sub FpSpread1_AxisModelChanged(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.Model.SheetAxisModelEventArgs)
Handles model.Changed
FpSpread1.ActiveSheet.SetValue(2, 0, "Fired")
End Sub
End Class

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.