Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
Row

WorksheetPrintOptions.PrintTitles Property

Provides access to an object used to specify rows and columns to be repeated on every printed page.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v19.1.Core.dll

Declaration

WorksheetPrintTitleOptions PrintTitles { get; }

Property Value

Type Description
WorksheetPrintTitleOptions

A WorksheetPrintTitleOptions object that specifies titles to be repeated on every printed page.

Property Paths

You can access this nested property as listed below:

Object Type Path to PrintTitles
Worksheet
.PrintOptions.PrintTitles

Remarks

Use the PrintTitles property to get access to an object that allows you to repeat specific rows at the top of every printed page (WorksheetPrintTitleOptions.Rows, WorksheetPrintTitleOptions.SetRows), or specific columns on the left side of every printed page (WorksheetPrintTitleOptions.Columns, WorksheetPrintTitleOptions.SetColumns). For an example, refer to the How to: Print Titles on a Worksheet article.

To remove print titles from a worksheet, use the WorksheetPrintTitleOptions.Clear method.

See Also