| ProgressDialogCancellationPending Property |
Gets a value indicating whether the user has requested cancellation of the operation.
Namespace:
Ookii.Dialogs
Assembly:
Ookii.Dialogs (in Ookii.Dialogs.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public bool CancellationPending { get; }
Public ReadOnly Property CancellationPending As Boolean
Get
public:
property bool CancellationPending {
bool get ();
}
member CancellationPending : bool with get
Property Value
Type:
Boolean if the user has cancelled the progress dialog; otherwise,
. The default is
.
Remarks
The event handler for the
DoWork event must periodically check this property and abort the operation
if it returns
.
See Also