Skip to main content
A newer version of this page is available. .
Row

TableStyle.BuiltIn Property

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

Namespace: DevExpress.Spreadsheet

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

Declaration

bool BuiltIn { get; }

Property Value

Type Description
Boolean

true, if the table or pivot table 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. For details, see the How to: Create, Modify and Delete Table Styles example.

See Also