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

TableStyle.BuiltIn Property

Indicates whether the table or PivotTable style is built-in.

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

bool BuiltIn { get; }

#Property Value

Type Description
Boolean

true if the table or PivotTable style is built-in; otherwise, false.

#Remarks

By default, the workbook’s TableStyleCollection collection contains a set of built-in table and pivot table styles similar to Microsoft® Excel®. These styles cannot be modified or removed from the collection. However, you can use a built-in style as a base for creating your own custom style. To do this, access a built-in style by its name or identifier (BuiltInTableStyleId for tables or DevExpress.Spreadsheet.BuiltInPivotStyleId for pivot tables), call the TableStyle.Duplicate method and modify the format settings of the created copy of the built-in style.

See Also