Skip to main content

SpreadsheetControl.CommandBarStyle Property

Gets or sets the command bar for the SpreadsheetControl. This is a dependency property.

Namespace: DevExpress.Xpf.Spreadsheet

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

NuGet Package: DevExpress.Wpf.Spreadsheet

Declaration

public CommandBarStyle CommandBarStyle { get; set; }

Property Value

Type Description
CommandBarStyle

A CommandBarStyle enumeration value.

Available values:

Name Description
Empty

The SpreadsheetControl does not display an integrated ribbon.

Ribbon

The SpreadsheetControl displays an integrated ribbon.

Remarks

Use the CommandBarStyle property to show or hide the integrated ribbon UI for the SpreadsheetControl. When you create a new WPF Spreadsheet application, it displays the integrated ribbon with all the available spreadsheet ribbon pages by default. You can customize the integrated ribbon by adding new ribbon elements, modifying or removing the existing items. For an example, refer to the Customize the Integrated Ribbon UI for the Spreadsheet tutorial.

If you do not require the integrated ribbon, remove it by setting the CommandBarStyle property to CommandBarStyle.Empty.

Note

The SpreadsheetControl.Ribbon property does not return the ribbon menu specified by the CommandBarStyle property.

The following code snippets (auto-collected from DevExpress Examples) contain references to the CommandBarStyle property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also