Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Interfaces, prefix the name with the module name and a period.
PDTIMER (Interfaces)
.
C# Definition:
/// <summary>
/// Flags that indicate the action to be taken by the ProgressDialog.SetTime() method.
/// </summary>
public enum PDTIMER : uint //DWORD
{
/// <summary>Resets the timer to zero. Progress will be calculated from the time this method is called.</summary>
Reset = (0x01),
/// <summary>Progress has been suspended.</summary>
Pause = (0x02),
/// <summary>Progress has been resumed.</summary>
Resume = (0x03)
}
''' <summary>
''' Resets the timer to zero. Progress will be calculated from the time this method is called.
''' </summary>
Reset = &H1
''' <summary>
''' Progress has been suspended.
''' </summary>
Pause = &H2
''' <summary>
''' Progress has been resumed.
''' </summary>
[Resume] = &H3
End Enum
End Enum
User-Defined Types:
None.
Notes:
None.
Exposes methods that provide options for an application to display a progress dialog box.
2/14/2012 4:26:13 PM - -93.87.206.141
Click to read this page
10/23/2022 7:47:26 PM - gBqsPxAZ-51.137.182.20
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
alternate definitions?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.