ArcGIS Explorer Component Help |
ProgressChangedEventArgs..::.Message Property |
ProgressChangedEventArgs Class See Also |
Gets a string containing a message to show in a progress dialog on the UI thread.
Namespace:
ESRI.ArcGISExplorer.ThreadingAssembly: ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)
Syntax
C# |
---|
public string Message { get; } |
Visual Basic (Declaration) |
---|
Public ReadOnly Property Message As String |
Field Value
A string containing a progress message, or nullNothingnullptra null reference (Nothing in Visual Basic) if no message was set.Remarks
The Message property contains a message passed from the DoWork event on the background thread, describing the progress of the worker thread operation. It can be used in conjunction with the Progress property to display a progress dialog on the UI thread informing the user of the progress of the operation.
The Message property may be null if no message was set in the ReportProgress method.