Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public class ChatMessageToolbarAction : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseChatMessageToolbarAction
Implements:
Inherited Members
Constructors
C#
public ChatMessageToolbarAction()
Methods
C#
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Overrides:
C#
public void Dispose()
Implements:
C#
protected override void OnInitialized()
Overrides:
Properties
C#
[CascadingParameter]
public ChatAuthorMessageSettings AuthorMessageSettingsContainer { get; set; }
Defines whether the action should be disabled.
C#
[Parameter]
public bool Disabled { get; set; }
Specifies an icon rendered in the action. You can use either a predefined Telerik Icon or a custom one. Refer to Icons - Documentation for more information on how icons work.
C#
[Parameter]
public object Icon { get; set; }
Defines the ID of the Action. If not set, a new Guid will be generated.
C#
[Parameter]
public string Id { get; set; }
Defines a click handler of the Action.
C#
[Parameter]
public EventCallback<ChatMessageActionClickEventArgs> OnClick { get; set; }
C#
[CascadingParameter]
public ChatReceiverMessageSettings ReceiverMessageSettingsContainer { get; set; }