Skip to main content

RichEditRibbonTabCollection.CreateDefaultRibbonTabs() Method

Creates default ribbon tabs within the RichEditRibbonTabCollection collection.

Namespace: DevExpress.Web.ASPxRichEdit

Assembly: DevExpress.Web.ASPxRichEdit.v23.2.dll

NuGet Package: DevExpress.Web.Office

Declaration

public void CreateDefaultRibbonTabs()

Remarks

Use the CreateDefaultRibbonTabs method, to manually create a default set of ribbon tabs within the RichEditRibbonTabCollection.

Custom tabs can be added to the ASPxRichEdit.RibbonTabs collection using the collection’s Collection<T>.Add method.

ASPxRichEdit1.CreateDefaultRibbonTabs(true);  
// ...  
ASPxRichEdit1.RibbonTabs[1].Groups[2].ShowDialogBoxLauncher = false;  
See Also