Skip to main content
All docs
V23.2

DesignerToolbarOptionBuilder Class

A wrapper that provides access to DesignerToolbarExtension.

Namespace: DevExpress.DashboardAspNetCore

Assembly: DevExpress.Dashboard.v23.2.AspNetCore.dll

NuGet Package: DevExpress.AspNetCore.Dashboard

Declaration

public class DesignerToolbarOptionBuilder

Remarks

The code sample below shows how to access the DesignerToolbar options and handle the onPreparing event:

@(Html.DevExpress().Dashboard("dashboardControl1")
    .Width("100%")
    .Height("100%")
    .OnBeforeRender("onBeforeRender")
    .Extensions(ext => {
        ext.DesignerToolbar(options => {
            options.OnPreparing("customizeDashboard");
        });
    })
)

Inheritance

Object
DesignerToolbarOptionBuilder
See Also