Spread Windows Forms 12.0 Product Documentation
NewTop Property
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > TopChangeEventArgs Class : NewTop Property
Gets the index of the new top row.
Syntax
'Declaration
 
Public ReadOnly Property NewTop As Integer
'Usage
 
Dim instance As TopChangeEventArgs
Dim value As Integer
 
value = instance.NewTop
public int NewTop {get;}

Property Value

Integer index of new top row
Example
private void fpSpread1_TopChange(object sender, FarPoint.Win.Spread.TopChangeEventArgs e)
{
    label1.Text = "The old top row was " + e.OldTop + " and the new top row is " + e.NewTop;
}
Private Sub FpSpread1_TopChange(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.TopChangeEventArgs) Handles FpSpread1.TopChange
    Label1.Text = "The old top row was " & e.OldTop & " and the new top row is " & e.NewTop
End Sub
See Also

Reference

TopChangeEventArgs Class
TopChangeEventArgs Members