RichEditControl.CreateBars(RichEditToolbarType) Method
In This Article
Creates a set of toolbars with RichEditControl-specific actions at runtime.
Namespace: DevExpress.XtraRichEdit
Assembly: DevExpress.XtraRichEdit.v24.2.dll
NuGet Package: DevExpress.Win.RichEdit
#Declaration
public BarManager CreateBars(
RichEditToolbarType toolbarType
)
#Parameters
Name | Type | Description |
---|---|---|
toolbar |
Rich |
One of the Rich |
#Returns
Type | Description |
---|---|
Bar |
A Bar |
#Example
BarManager barManager = richEditControl1.CreateBars(RichEditToolbarType.File | RichEditToolbarType.Home| RichEditToolbarType.PageLayout);
barManager.Form = this;
See Also