|
JobStatusPermillageComplete Property |
This value is the percentage of the current activity for that job that is complete. To display a percentage string for an arbitrary activity, jobs can provide a value for this property,
and that value will be formatted and displayed in the client. To remove the display of the percentage, set this property to zero.
Namespace: DoubleTake.Jobs.ContractAssembly: DoubleTake.PowerShell.Contract.Data (in DoubleTake.PowerShell.Contract.Data.dll) Version: 8.0.0.1664
Syntaxpublic int PermillageComplete { get; set; }
Public Property PermillageComplete As Integer
Get
Set
public:
property int PermillageComplete {
int get ();
void set (int value);
}
function get_PermillageComplete();
function set_PermillageComplete(value);
Property Value
Type:
Int32
The permillage complete of the current activity of this job.
Remarks
To display a "percent complete" string for an arbitrary activity, jobs
can provide a value for this property, and that value will be formatted
and displayed in the console. To remove the display of the percentage,
set this property to zero.
See Also