Skip to main content
Row

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

WorksheetPrintTitleOptions.Columns Property

Gets or sets specific columns to be repeated on every printed page.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v24.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

CellRange Columns { get; set; }

#Property Value

Type Description
CellRange

A CellRange object that specifies worksheet columns repeated on every printed page.

If the specified cell range is not a continuous interval of entire columns, an exception is raised.

#Property Paths

You can access this nested property as listed below:

Object Type Path to Columns
WorksheetPrintOptions
.PrintTitles .Columns

#Remarks

Use the Columns and WorksheetPrintTitleOptions.Rows properties to set or obtain rows and columns that should appear on every printed page. Note that you can also use the WorksheetPrintTitleOptions.SetRows and WorksheetPrintTitleOptions.SetColumns methods to repeat specific rows and columns on every page when printing. For an example, refer to the How to: Print Titles on a Worksheet document.

If you don’t want column headings to appear on every printed page of your worksheet, set the Columns property to null (Nothing in Visual Basic), or use the WorksheetPrintTitleOptions.Clear method to remove all print titles specified in the worksheet.

See Also