@msdn=http://msdn.microsoft.com/en-us/library/windows/desktop/dd183565(v=vs.85).aspx @pinvoke=http://pinvoke.net/$$$.htm Summary: Defines the values for the dmDuplex-Field of the [DEVMODE] struct. !!!!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> /// Long-edge binding, that is, the long edge of the page is vertical. /// </summary> DMDUP_VERTICAL = 2, /// <summary> /// Short-edge binding, that is, the long edge of the page is horizontal. /// </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@msdn on MSDN
Edit Enums.DM
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.