Class
PromptBoxActionButtonEventArgs

Event arguments for the OnPromptAction event of the TelerikPromptBox component.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class PromptBoxActionButtonEventArgs

Inheritance: objectPromptBoxActionButtonEventArgs

Constructors

PromptBoxActionButtonEventArgs()

Declaration

cs-api-definition
public PromptBoxActionButtonEventArgs()

Properties

Action

The action of the button that was clicked.

Declaration

cs-api-definition
public PromptBoxActionType Action { get; set; }

Property Value

PromptBoxActionType

Files

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.

Declaration

cs-api-definition
public IEnumerable<FileSelectFileInfo> Files { get; set; }

Property Value

IEnumerable<FileSelectFileInfo>

Text

The message text that was sent.

Declaration

cs-api-definition
public string Text { get; set; }

Property Value

string