Skip to main content

TableReferenceExpression.ColumnsDefined Property

Gets whether column names are specified in the table reference.

Namespace: DevExpress.Spreadsheet.Formulas

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

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

public bool ColumnsDefined { get; }

Property Value

Type Description
Boolean

true, if column names are in the table reference; otherwise, false.

Remarks

The SUM(Table1[#Data]) expression will have the ColumnsDefined set to false, while the Table1[[#Headers], [Column2]:[Column4]] expression will have the ColumnsDefined set to true.

See Also