Skip to main content

BarItemExceptionEventArgs Class

Contains data for the BarItemExceptionRaised event.

Namespace: DevExpress.Blazor.Office

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public class BarItemExceptionEventArgs :
    HandledEventArgs

Remarks

The code below demonstrates how to handle exceptions that may occur when a user interacts with an item on the Rich Text Editor’s ribbon or toolbar.

@inject ILogger<RichEdit_ToolbarCustomization> Logger;
@using Microsoft.Extensions.Logging;

<DxRichEdit CustomizeToolbar=OnCustomizeToolbar
            BarItemExceptionRaised=OnBarItemExceptionRaised />

@code {
    void OnCustomizeToolbar(IToolbar toolbar) {
        // ...
    }

    void OnBarItemExceptionRaised(BarItemExceptionEventArgs args) {
        Logger.LogError(args.Exception, args.Exception.Message);
        args.Handled = true;
    }
}

Run Demo: Toolbar Customization Run Demo: Ribbon Customization

Inheritance

Object
EventArgs
HandledEventArgs
BarItemExceptionEventArgs
See Also