Spread Silverlight Documentation
ValidationPasting Event (SheetView)


GrapeCity.Windows.SpreadSheet.UI Namespace > SheetView Class : ValidationPasting Event
Occurs when validation the whether the pasting is validate.
Syntax
'Declaration
 
Public Event ValidationPasting As System.EventHandler(Of ValidationPastingEventArgs)
'Usage
 
Dim instance As SheetView
Dim handler As System.EventHandler(Of ValidationPastingEventArgs)
 
AddHandler instance.ValidationPasting, handler
public event System.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