Class CancelEventArgs
Provides data for an event that can be canceled.
Inheritance
Namespace: Telerik.ReportViewer.Silverlight
Assembly: Telerik.ReportViewer.Silverlight.dll
Syntax
public class CancelEventArgs : EventArgs
Constructors
CancelEventArgs()
Initializes a new instance of the CancelEventArgs class.
Declaration
public CancelEventArgs()
CancelEventArgs(Boolean)
Initializes a new instance of the CancelEventArgs class with the Cancel property set to the given value.
Declaration
public CancelEventArgs(bool cancel)
Parameters
System.Boolean
cancel
true to cancel the event; otherwise, false. |
Properties
Cancel
Gets or sets a value indicating whether the event should be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
System.Boolean
|