Spread Silverlight Documentation
LeftColumnChanged Event (SheetView)


GrapeCity.Windows.SpreadSheet.UI Namespace > SheetView Class : LeftColumnChanged Event
Occurs when the left column changes.
Syntax
'Declaration
 
Public Event LeftColumnChanged As System.EventHandler(Of ViewportEventArgs)
'Usage
 
Dim instance As SheetView
Dim handler As System.EventHandler(Of ViewportEventArgs)
 
AddHandler instance.LeftColumnChanged, handler
public event System.EventHandler<ViewportEventArgs> LeftColumnChanged
Event Data

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

PropertyDescription
Gets the index of the new viewport index.  
Gets the index of the previous viewport index.  
Gets the index of the viewport in which the change occurred.  
See Also