| VoicepackUpdaterIsCanceled Property |
Gets a value indicating whether the voicepack update has been canceled.
Namespace: Bevelstone.EditVoicepack.InstallerApiAssembly: Bevelstone.EditVoicepack.InstallerApi (in Bevelstone.EditVoicepack.InstallerApi.dll) Version: 5.0.77.0 (5.0.77.0)
Syntaxpublic bool IsCanceled { get; }Public ReadOnly Property IsCanceled As Boolean
Get
public:
property bool IsCanceled {
bool get ();
}member IsCanceled : bool with get
Property Value
Type:
Booleantrue if the update has been canceled; otherwise,
false.
RemarksIf IsCompleted is false this IsCanceled indicate if
the voicepack update has been requested to Cancel. If
IsCompleted is trueIsCanceled indicate if
the voicepack update was actually canceled.
Depending on the time Cancel
is called, the voicepack update might succeed after the operation is canceled. In this case
IsCompleted will be true while IsCanceled will be false.
See Also