ProgressDialogFlags Enumeration

Flags that control the operation of the progress dialog box for StartProgressDialog(IntPtr, Object, ProgressDialogFlags, IntPtr) function.

Definition

Namespace: DevCase.Win32.Enums
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[FlagsAttribute]
public enum ProgressDialogFlags

Remarks

Members

Normal 0 Normal progress dialog box behavior.
Modal 1 The progress dialog box will be modal to the window specified by hwndParent.

By default, a progress dialog box is modeless.

AutoTime 2 Automatically estimate the remaining time and display the estimate on line 3.
NoTime 4 Do not show the "time remaining" text.
NoMinimize 8 Do not display a minimize button on the dialog box's caption bar.
NoProgressBar 16 Do not display a progress bar.
MarqueeProgress 32 Sets the progress bar to marquee mode.
NoCancel 64 Do not display a cancel button.

See Also