Skip to main content

IXlTableColumn.Name Property

Gets the unique name of the table column.

Namespace: DevExpress.Export.Xl

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

NuGet Package: DevExpress.Printing.Core

#Declaration

string Name { get; }

#Property Value

Type Description
String

A String value that specifies the table column name.

#Remarks

Column names can be used in formulas to refer to the corresponding table data ranges. This allows you to work with table data more easily. To create a reference to a specific part of a table or table column(s), use the IXlTable.GetReference or IXlTable.GetRowReference methods. For an example on how to use a structured reference to create a formula for a calculated column, see How to: Create a Calculated Column.

If the IXlTable.HasHeaderRow property value is true, column names are displayed in the header row at the top of the table.

XlExport_Tables_HeaderRow

Note

Column names must be unique within the table.

See Also