Spread WPF 17
GrapeCity.Windows.SpreadSheet.UI Namespace / SheetView Class / InvalidOperation Event


In This Topic
    InvalidOperation Event (SheetView)
    In This Topic
    Occurs when an invalid operation is performed.
    Syntax
    'Declaration
     
    Public Event InvalidOperation As EventHandler(Of InvalidOperationEventArgs)
    'Usage
     
    Dim instance As SheetView
    Dim handler As EventHandler(Of InvalidOperationEventArgs)
     
    AddHandler instance.InvalidOperation, handler
    public event 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