New to Telerik UI for BlazorStart a free 30-day trial

Event arguments for the OnPromptAction event of the TelerikPromptBox component.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class PromptBoxActionButtonEventArgs

Inheritance: objectPromptBoxActionButtonEventArgs

Constructors

C#
public PromptBoxActionButtonEventArgs()

Properties

The action of the button that was clicked.

C#
public PromptBoxActionType Action { get; set; }

Files

IEnumerable<FileSelectFileInfo>

The files selected in the TelerikPromptBox when action button is clicked. The collection contains information about the files, such as name, size, and type. Also you can access the file stream if the file is uploaded.

C#
public IEnumerable<FileSelectFileInfo> Files { get; set; }

The message text that was sent.

C#
public string Text { get; set; }