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

Represents an image in the RadRichTextEditor.

Definition

Namespace:Telerik.Maui.Controls.RichTextEditor

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class RichTextImage

Inheritance: objectRichTextImage

Constructors

Initializes a new instance of the RichTextImage class.

C#
public RichTextImage(RichTextImageSource source, string title, RichTextUnit? width, RichTextUnit? height)
Parameters:sourceRichTextImageSource

Specifies the source of the image.

titlestring

Specifies the title of the image.

widthRichTextUnit?

Specifies the width of the image.

heightRichTextUnit?

Specifies the height of the image.

Initializes a new instance of the RichTextImage class.

C#
public RichTextImage(RichTextImageSource source)
Parameters:sourceRichTextImageSource

Specifies the source of the image.

Properties

Gets the height of the image.

C#
public RichTextUnit? Height { get; }

Gets the source of the image.

C#
public RichTextImageSource Source { get; }

Gets the title of the image.

C#
public string Title { get; }

Gets the width of the image.

C#
public RichTextUnit? Width { get; }