ToastOptions.Text Property
Specifies the toast’s text.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v25.2.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(null)]
public string Text { get; set; }
Property Value
| Type | Default | Description |
|---|---|---|
| String | null | Toast text. |
Remarks
Use the Text property to specify the text displayed in the toast notification.
<DxButton Text="Show a toast" Click="CreateToastAtRuntime" />
<DxToastProvider />
@code {
[Inject] IToastNotificationService ToastService { get; set; }
private void CreateToastAtRuntime() {
ToastService.ShowToast(new ToastOptions {
Title = "Notification",
Text = "The process is completed.",
ShowIcon = false,
CssClass = "italic-text",
ThemeMode = ToastThemeMode.Pastel,
ShowCloseButton = false,
});
}
}

See Also