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


In This Topic
    ValidationPasting Event (SheetView)
    In This Topic
    Occurs when validation the whether the pasting is validate.
    Syntax
    'Declaration
     
    Public Event ValidationPasting As EventHandler(Of ValidationPastingEventArgs)
    'Usage
     
    Dim instance As SheetView
    Dim handler As EventHandler(Of ValidationPastingEventArgs)
     
    AddHandler instance.ValidationPasting, handler
    public event EventHandler<ValidationPastingEventArgs> ValidationPasting
    Event Data

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

    PropertyDescription
    Gets the source range.  
    Gets the source sheet.  
    Gets or sets whether the event is handled.  
    Gets or sets the invalid message.  
    Gets a value that indicates whether the data is cut.  
    Gets or sets whether the value is invalid.  
    Gets the pasting range.  
    Gets the cell range when pasting.  
    Gets the worksheet.  
    See Also