Skip to main content
All docs
V25.1
  • DxToast.Title Property

    Specifies the toast notification title.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(null)]
    [Parameter]
    public string Title { get; set; }

    Property Value

    Type Default Description
    String null

    The title.

    Remarks

    Use the Title property to specify the toast notification title.

    <style>
        .italic-text {
            font-style: italic;
            text-align: center;
        }
    </style>
    
    <DxToast @ref=toastButtons
             Title="Notification"
             Text="The process is completed."
             ShowIcon="false"
             CssClass="italic-text"
             ThemeMode="ToastThemeMode.Pastel"
             ShowCloseButton="false" />
    

    Customized toast notification

    See Also