Example #1
0
 public static extern PrintDialogResult PrintDlgExW(ref PrintDlgExW param0);
Example #2
0
 /// <summary>
 /// The UNICODE version of PrintDlgEx function displays a Print property sheet that enables the user to specify
 /// the properties of a particular print job. A Print property sheet has a General page containing controls 
 /// similar to the Print dialog box. The property sheet can also have additional application-specific and 
 /// driver-specific property pages following the General page
 /// </summary>
 /// <param name="lppd">Pointer to a PRINTDLGEXW structure that contains information used to initialize the 
 /// property sheet. When PrintDlgEx returns, this structure contains information about the user's selections.
 /// </param>
 /// <returns>If the function succeeds, the return value is S_OK and the dwResultAction member of the PRINTDLGEXW 
 /// structure contains one of the </returns>
 public static PrintDialogResult PrintDlgExW(ref PrintDlgExW lppd)
 {
     return Native.PrintDlgExW(ref lppd);
 }