| ProgressDialogDescription Property |
Gets or sets additional details about the operation being carried out.
Namespace:
Ookii.Dialogs
Assembly:
Ookii.Dialogs (in Ookii.Dialogs.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public string Description { get; set; }
Public Property Description As String
Get
Set
public:
property String^ Description {
String^ get ();
void set (String^ value);
}
member Description : string with get, set
Property Value
Type:
String
Additional details about the operation being carried out. The default value is an empty string.
Remarks
This text is used to provide additional details beyond the
Text property.
Remarks
This property can be changed while the dialog is running, but may only be changed from the thread which
created the progress dialog. The recommended method to change this value while the dialog is running
is to use the ReportProgress(Int32, String, String) method.
See Also