SpreadsheetControl.CreateBars(SpreadsheetToolbarType) Method
Adds a BarManager with the specified bars to the SpreadsheetControl.
Namespace: DevExpress.XtraSpreadsheet
Assembly: DevExpress.XtraSpreadsheet.v24.1.dll
NuGet Package: DevExpress.Win.Spreadsheet
Declaration
Parameters
Name | Type | Description |
---|---|---|
toolbarType | SpreadsheetToolbarType | The SpreadsheetToolbarType enumeration members that specify toolbars to add to the control. |
Returns
Type | Description |
---|---|
BarManager | A component that manages the created toolbars. |
Remarks
Use the CreateBars method overloads to create a toolbar menu that allows end users to perform basic operations in the SpreadsheetControl.
using DevExpress.XtraBars;
using DevExpress.XtraSpreadsheet;
// ...
public Form1()
{
InitializeComponent();
// Create all available spreadsheet toolbars.
BarManager bars = spreadsheetControl1.CreateBars(SpreadsheetToolbarType.All | SpreadsheetToolbarType.MailMerge);
bars.Form = this;
}
To create a toolbar menu at design time, select the Create BarManager item in the SpreadsheetControl’s smart tag menu.
You can also use the CreateRibbon method to provide the modern ribbon interface for the SpreadsheetControl.