Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

PDTIMER (Interfaces)
 
.
Summary

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)
}

VB Definition:

Public Enum PDTIMER As UInteger
    ''' <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

User-Defined Types:

None.

Notes:

None.

Documentation

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.

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions