- Timestamp:
- 11/16/17 10:30:21 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/EnhancedProgress/HeuristicLab.MainForm/3.3/Interfaces/IProgress.cs
r15417 r15477 35 35 /// Changing the ProgressValue when ProgressBarMode is Marquee raises an Exception. 36 36 /// </summary> 37 /// <exception cref="InvalidOperationException">Setting the ProgressValue-property while in the Marquee state is invalid.</exception> 37 38 double ProgressValue { get; set; } 38 39 bool CanBeStopped { get; } … … 40 41 41 42 /// <summary> 42 /// Start (or Restart) a progress with ProgressBarMode Marquee 43 /// Start (or Restart) a progress in ProgressBarMode Continues to display specific progress values (from 0 to 1). 44 /// A new progress value is reported by setting the ProgressValue-property. 43 45 /// </summary> 44 void Start(string message); 46 void Start(string message, double progressValue = 0); 47 45 48 /// <summary> 46 /// Start (or Restart) a progress with ProgressBarMode Continues 49 /// Start (or Restart) a progress in ProgressBarMode Marquee to define an "unknown" progress state. 50 /// Consider using marquee when the progress is not measurable but the user should be notified that something is still happening. 51 /// Setting the ProgressValue-property in the Marquee state throws an exception. 47 52 /// </summary> 48 void Start(string message, double progressValue); 53 void StartMarquee(string message); 54 49 55 void Finish(); 50 56 void Stop();
Note: See TracChangeset
for help on using the changeset viewer.