Spread Windows Forms 12.0 Product Documentation
View Property (EnterCellEventArgs)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > EnterCellEventArgs Class : View Property
Gets the view that contains the cell being entered.
Syntax
'Declaration
 
Public ReadOnly Property View As SpreadView
'Usage
 
Dim instance As EnterCellEventArgs
Dim value As SpreadView
 
value = instance.View
public SpreadView View {get;}

Property Value

SpreadView object containing the view
Example
private void fpSpread1_EnterCell(Object sender, FarPoint.Win.Spread.EnterCellEventArgs e) 
{
    textBox1.Text = "You have entered cell " + e.Row + " - " + e.Column + " on sheet " + e.View.ActiveSheetIndex;
}
Private Sub FpSpread1_EnterCell(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.EnterCellEventArgs) Handles FpSpread1.EnterCell
    TextBox1.Text = "You have entered cell " & e.Row & " - " & e.Column & " on sheet " & e.View.ActiveSheetIndex
End Sub
See Also

Reference

EnterCellEventArgs Class
EnterCellEventArgs Members