Spread Windows Forms 7.0 Product Documentation
SheetAxisModelEventHandler Delegate
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace : SheetAxisModelEventHandler Delegate


sender
e

Glossary Item Box

Handles the Changed event for the axis model for the sheet.

Syntax

Visual Basic (Declaration) 
Public Delegate Sub SheetAxisModelEventHandler( _
   ByVal sender As Object, _
   ByVal e As SheetAxisModelEventArgs _
) 
Visual Basic (Usage)Copy Code
Dim instance As New SheetAxisModelEventHandler(AddressOf HandlerMethod)
C# 
public delegate void SheetAxisModelEventHandler( 
   object sender,
   SheetAxisModelEventArgs e
)

Parameters

sender
e

Remarks

For information on the event, refer to the Changed event.

Example

This example creates the handler for the model.
C#Copy Code
FarPoint.Win.Spread.Model.BaseSheetAxisModel bsam; 
bsam = (FarPoint.Win.Spread.Model.BaseSheetAxisModel)fpSpread1.ActiveSheet.Models.ColumnAxis; 
bsam.SetSize(0, 120); 
 
bsam.Changed += new FarPoint.Win.Spread.Model.SheetAxisModelEventHandler(bsamAxisModelChanged); 
 
private void bsamAxisModelChanged(object sender, FarPoint.Win.Spread.Model.SheetAxisModelEventArgs e) 
{ 
    textBox1.Text = e.Count.ToString(); 
} 
Visual BasicCopy Code
Dim bsam As FarPoint.Win.Spread.Model.BaseSheetAxisModel
bsam = FpSpread1.ActiveSheet.Models.ColumnAxis
bsam.SetSize(0, 120)

Dim h As FarPoint.Win.Spread.Model.SheetAxisModelEventHandler = AddressOf bsamAxisModelChanged
AddHandler bsam.Changed, h

Private Sub bsamAxisModelChanged(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.Model.SheetAxisModelEventArgs)
    TextBox1.Text = e.Count.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

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