Spread Windows Forms 9.0 Product Documentation
TopChange Event
Example 


Occurs when the top row changes.
Syntax
'Declaration
 
Public Event TopChange As TopChangeEventHandler
'Usage
 
Dim instance As FpSpread
Dim handler As TopChangeEventHandler
 
AddHandler instance.TopChange, handler
public event TopChangeEventHandler TopChange
Event Data

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

PropertyDescription
NewTopGets the index of the new top row.  
OldTopGets the index of the previous top row.  
RowViewportIndexGets the index of the viewport row in which the change occurred.  
Remarks

This event is raised by the OnTopChange method when a different row becomes the new top row.

For more details on the individual event arguments, refer to TopChangeEventArgs members.

Example
This example raises the TopChange event.
private void fpSpread1_TopChange(object sender, FarPoint.Win.Spread.TopChangeEventArgs e)
{
      Label1.Text = "The new top is " + e.NewTop.ToString;
}
Private Sub FpSpread1_TopChange(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.TopChangeEventArgs) Handles FpSpread1.TopChange
     Label1.Text = "The new top is " & e.NewTop.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

FpSpread Class
FpSpread Members
TopChangeEventArgs Class

User-Task Documentation

Customizing the Scroll Bars

 

 


Copyright © GrapeCity, inc. All rights reserved.