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

Column.Heading Property

Gets the column heading.

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

string Heading { get; }

#Property Value

Type Description
String

A string that specifies the column heading.

#Remarks

Columns can be identified by their headings displayed at the top of a worksheet (see the How to: Access a Row or Column example).

By default, the A1 reference style is used in a workbook. In this case, columns are lettered (“A”, “B”, “C”,…,”XFD”) and the Heading property returns the string that contains the column letter or combination of letters.

Row_Column_Indexes

If the R1C1 reference style is used in a workbook, columns are numbered in a worksheet (“1”, “2”, “3”,… , “16384”). In this case, the Heading property returns the string that specifies the column number.

SpreadsheetControl_R1C1

To hide row and column headings in a worksheet, use the WorksheetView.ShowHeadings property. To specify whether row and column headings should be printed, use the WorksheetPrintOptions.PrintHeadings property of the object accessed via Worksheet.PrintOptions.

See Also