@msdn=http://msdn.microsoft.com/en-us/library/windows/desktop/dd162852(v=vs.85).aspx @pinvoke=http://pinvoke.net/$$$.htm Summary: The PRINTER_INFO_9 structure specifies the per-user default printer settings and can be used instead of the [PRINTER_INFO_2] struct, if you only want to get or set the [DEVMODE] struct. !!!!C# Definition: /// <summary> /// The PRINTER_INFO_9 structure specifies the per-user default printer settings. /// </summary> /// <seealso href="http://msdn.microsoft.com/en-us/library/windows/desktop/dd162852(v=vs.85).aspx"/> [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)] internal class PRINTER_INFO_9 { /// <summary> /// A pointer to a DEVMODE structure that defines the per-user /// default printer data such as the paper orientation and the resolution. /// The DEVMODE is stored in the user's registry. /// </summary> public IntPtr pDevMode; } !!!!User-Defined Field Types: None. !!!!Notes: This definition uses a class, but struct is also possible. Documentation: PRINTER_INFO_9@msdn on MSDN
Edit Structures.PRINTE...
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.