New to Telerik UI for .NET MAUIStart a free 30-day trial

Represents a view which displays an attachments in the chat messages, specifically visualizes the ChatAttachment inside the RadChatListView.

Definition

Constructors

Initializes a new instance of the class.

C#
public ChatMessageAttachmentView()

Fields

ActionsViewStyleProperty

BindableProperty

Identifies the ActionsViewStyle property.

C#
public static readonly BindableProperty ActionsViewStyleProperty

AttachmentProperty

BindableProperty

Identifies the Attachment property.

C#
public static readonly BindableProperty AttachmentProperty

ImageStyleProperty

BindableProperty

Identifies the ImageStyle property.

C#
public static readonly BindableProperty ImageStyleProperty

SubtitleStyleProperty

BindableProperty

Identifies the SubtitleStyle property.

C#
public static readonly BindableProperty SubtitleStyleProperty

TitleStyleProperty

BindableProperty

Identifies the TitleStyle property.

C#
public static readonly BindableProperty TitleStyleProperty

Properties

Gets or sets the custom style that represents the actions that can be done upon the Attachments. The taget type of the style must be ChatMessageAttachmentActionsView. The actual style that is applied is a merger of the custom ActionsViewStyle and the default style.

C#
public Style ActionsViewStyle { get; set; }

Gets or sets the ChatAttachment this view will represent.

C#
public ChatAttachment Attachment { get; set; }

Gets or sets the custom image style that represents the attachment icon. The taget type of the style must be . The actual style that is applied is a merger of the custom ImageStyle and the default style.

C#
public Style ImageStyle { get; set; }

Gets or sets the custom subtitle style that represents the FileSize. The taget type of the style must be . The actual style that is applied is a merger of the custom SubtitleStyle and the default style.

C#
public Style SubtitleStyle { get; set; }

Gets or sets the custom title style that represents the FileName. The taget type of the style must be . The actual style that is applied is a merger of the custom TitleStyle and the default style.

C#
public Style TitleStyle { get; set; }