Beispiel #1
0
 public static extern PrintDialogResult PrintDlgExA(ref PrintDlgExA param0);
Beispiel #2
0
 /// <summary>
 /// The ANSI 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 PRINTDLGEXA 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 PRINTDLGEXA
 /// structure contains one of the </returns>
 public static PrintDialogResult PrintDlgExA(ref PrintDlgExA lppd)
 {
     return(Native.PrintDlgExA(ref lppd));
 }