Example #1
0
 public static extern bool PageSetupDlgA(ref PageSetupDlgA param0);
Example #2
0
 /// <summary>
 /// The ANSI version of PageSetupDlg function creates a Page Setup dialog box that enables the user to specify the
 /// attributes of a printed page. These attributes include the paper size and source, the page 
 /// orientation (portrait or landscape), and the width of the page margins.
 /// </summary>
 /// <param name="lppsd">Pointer to a PAGESETUPDLGA structure that contains information used to initialize the dialog
 /// box. The structure receives information about the user's selections when the function returns</param>
 /// <returns>If the user clicks the OK button, the return value is nonzero. The members of the PAGESETUPDLGA structure
 /// pointed to by the lppsd parameter indicate the user's selections. If the user cancels or closes the Page
 /// Setup dialog box or an error occurs, the return value is zero. To get extended error information, use the 
 /// CommDlgExtendedError function </returns>
 public static bool PageSetupDlgA(ref PageSetupDlgA lppsd)
 {
     return Native.PageSetupDlgA(ref lppsd);
 }