Back to Devexpress

DxToast.Title Property

blazor-devexpress-dot-blazor-dot-dxtoast-1272e496.md

latest1.3 KB
Original Source

DxToast.Title Property

Specifies the toast notification title.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

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

Property Value

TypeDefaultDescription
Stringnull

The title.

|

Remarks

Use the Title property to specify the toast notification title.

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

See Also

DxToast Class

DxToast Members

DevExpress.Blazor Namespace