DevProgressDialogUpdateProgress Method
Updates the progress dialog box with the current state of the operation.
Namespace: DevCase.UI.DialogsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public virtual void UpdateProgress(
ulong completed,
ulong total
)
Public Overridable Sub UpdateProgress (
completed As ULong,
total As ULong
)
Dim instance As DevProgressDialog
Dim completed As ULong
Dim total As ULong
instance.UpdateProgress(completed, total)
public:
virtual void UpdateProgress(
unsigned long long completed,
unsigned long long total
)
abstract UpdateProgress :
completed : uint64 *
total : uint64 -> unit
override UpdateProgress :
completed : uint64 *
total : uint64 -> unit
No code example is currently available or this language may not be supported.
Parameters
- completed UInt64
-
An application-defined value that indicates what proportion of the
operation has been completed at the time the method was called.
If called with this value equaling the value supplied in total,
the Stop method will be called to close the progress dialog.
- total UInt64
-
An application-defined value that specifies what
value completed will have when the operation is complete.