Spread Silverlight Documentation
InvalidOperation Event (SheetView)


GrapeCity.Windows.SpreadSheet.UI Namespace > SheetView Class : InvalidOperation Event
Occurs when an invalid operation is performed.
Syntax
'Declaration
 
Public Event InvalidOperation As System.EventHandler(Of InvalidOperationEventArgs)
'Usage
 
Dim instance As SheetView
Dim handler As System.EventHandler(Of InvalidOperationEventArgs)
 
AddHandler instance.InvalidOperation, handler
public event System.EventHandler<InvalidOperationEventArgs> InvalidOperation
Event Data

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

PropertyDescription
Gets the context.  
Gets the description of the invalid operation.  
Gets the operation.  
See Also