Spread Windows Forms 10.0 Product Documentation
Changed Event (BaseSheetAxisModel)
Example 


Occurs when the user makes a change to the model that affects the axis (row or column) of the sheet.
Syntax
'Declaration
 
Public Event Changed As SheetAxisModelEventHandler
'Usage
 
Dim instance As BaseSheetAxisModel
Dim handler As SheetAxisModelEventHandler
 
AddHandler instance.Changed, handler
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
CountGets the number of items being affected.  
IndexGets the index where the event happens.  
TypeGets 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.
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"); 
} 
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 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

BaseSheetAxisModel Class
BaseSheetAxisModel Members

 

 


Copyright © GrapeCity, inc. All rights reserved.