Skip to main content
A newer version of this page is available. .

Page Setup Dialog

  • 4 minutes to read

The Page Setup dialog allows end-users to specify the page orientation, paper size, margins, printout options, and it allows them to add headers and footers to a worksheet.

End-users can invoke the Page Setup dialog by clicking the dialog box launcher located in the bottom-right corner of the Page Setup group on the Page Layout ribbon tab. For an example on how to create a spreadsheet application with the ribbon UI, refer to the Lesson 1 - Create a Simple Spreadsheet tutorial.

DXSpreadsheet_Dialogs_PageSetup_Command

The Page Setup dialog includes the following tabs.

  • Page

    Options under the Page tab enable end-users to set page orientation (SheetView.Orientation), scaling options (WorksheetPrintOptions.Scale, WorksheetPrintOptions.FitToWidth and WorksheetPrintOptions.FitToHeight), paper size (SheetView.PaperKind), printing DPI and the starting page number (WorksheetPageNumbering.Start).

    DXSpreadsheet_Dialogs_PageSetup_PageTab

  • Margins

    This tab allows end-users to set page margins, which determine the space between the document content and page edges. To specify margins in code, use the SheetView.Margins property.

    End-users can center worksheet data on a printed page by selecting the Horizontally (WorksheetPrintOptions.CenterHorizontally) and Vertically (WorksheetPrintOptions.CenterVertically) check boxes.

    DXSpreadsheet_Dialogs_PageSetup_MarginsTab

  • Header/Footer

    Using this tab, end-users can add headers and footers to a worksheet printout. They can select one of the predefined options in the Header or Footer drop-down list, or specify custom headers and footers using the Header and Footer dialog, which can be invoked by clicking the Custom Header/Footer… button. To get access to the worksheet header and footer in code, use the Worksheet.HeaderFooterOptions property.

    This tab also allows end-users to specify a number of settings affecting both headers and footers.

    DXSpreadsheet_Dialogs_PageSetup_HeaderFooterTab

  • Sheet

    The Sheet tab allows end-users to specify the following high-powered printout options.

    • Print area (Worksheet.SetPrintRange)

      In the Print area box, an end-user can type a cell range to be printed.

    • Print titles (WorksheetPrintOptions.PrintTitles)

      This group of settings allows an end-user to specify rows and columns to be repeated on every printed page.

    • Gridlines (WorksheetPrintOptions.PrintGridlines)

      An end-user can select this check box to display worksheet gridlines on a printed page.

    • Black and white (WorksheetPrintOptions.BlackAndWhite)

      An end-user can select this check box to print a worksheet in black and white.

    • Draft quality (WorksheetPrintOptions.Draft)

      An end-user can select this check box to print a worksheet without graphics.

    • Row and column headings (WorksheetPrintOptions.PrintHeadings)

      An end-user can select this check box to include row and column headings into a worksheet printout.

    • Comments (WorksheetPrintOptions.CommentsPrintMode)

      In the Comments box, end-users can select one of the built-in options to specify how to print comments attached to worksheet cells. They can either omit comments on printing, print them as they are displayed on the worksheet, or append them to a separate page at the end of a worksheet printout.

    • Cell errors as (WorksheetPrintOptions.ErrorsPrintMode)

      In this box, end-users can select how to print formula errors contained in worksheet cells. They can print errors as they are displayed on the worksheet, replace them with blank values, display errors as two dashes (--), or print the error code #N/A in the corresponding cells.

    • Page order (WorksheetPrintOptions.PageOrder)

      An end-user can click Down, then over or Over, then down to specify whether worksheet pages should be numbered and printed from the top down and then left to right (PageOrder.DownThenOver) or from left to right and then from the top down (PageOrder.OverThenDown).

    DXSpreadsheet_Dialogs_PageSetup_SheetTab

An end-user can click the Print button located at the bottom of each tab to send the worksheet to a printer, or invoke the Print Preview window to view a worksheet before printing by clicking the Print Preview button.

Note

The Black and white, Draft quality and Comments options are not taken into account when printing a document from the SpreadsheetControl. However, they are saved to a file, so you can use Microsoft® Excel® or another spreadsheet application to load and print a document.

For examples on how to specify print settings for a worksheet in code, refer to the Printing section.