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

DMDUP (Enums)
 
.
Summary

C# Definition:

/// <summary>
/// Selects duplex or double-sided printing for printers capable of duplex printing.
/// </summary>
internal enum DMDUP : short
{
   /// <summary>
   /// Unknown setting.
   /// </summary>
   DMDUP_UNKNOWN = 0,

   /// <summary>
   /// Normal (nonduplex) printing.
   /// </summary>
   DMDUP_SIMPLEX = 1,

   /// <summary>
   /// Short-edge binding, that is, the long edge of the page is horizontal.
   /// </summary>
   DMDUP_VERTICAL = 2,

   /// <summary>
   /// Long-edge binding, that is, the long edge of the page is vertical.
   /// </summary>
   DMDUP_HORIZONTAL = 3,
}

Notes:

The definition of DMDUP_UNKNOWN is only to satisfy the rule, that every enum should have a zero value.

Documentation
DMDUP on MSDN
 

Please edit this page!

Do you have...

  • helpful tips?
  • corrections to the existing content?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it!

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