Class RichTextImage
Represents an image in the RadRichTextEditor.
Inheritance
Namespace: Telerik.XamarinForms.RichTextEditor
Assembly: Telerik.XamarinForms.RichTextEditor.dll
Syntax
public class RichTextImage : Object
Constructors
RichTextImage(RichTextImageSource)
Initializes a new instance of the RichTextImage class.
Declaration
public RichTextImage(RichTextImageSource source)
Parameters
RichTextImageSource
source
Specifies the source of the image. |
RichTextImage(RichTextImageSource, String, Nullable<RichTextUnit>, Nullable<RichTextUnit>)
Initializes a new instance of the RichTextImage class.
Declaration
public RichTextImage(RichTextImageSource source, string title, Nullable<RichTextUnit> width, Nullable<RichTextUnit> height)
Parameters
RichTextImageSource
source
Specifies the source of the image. |
System.String
title
Specifies the title of the image. |
System.Nullable<RichTextUnit>
width
Specifies the width of the image. |
System.Nullable<RichTextUnit>
height
Specifies the height of the image. |
Properties
Height
Gets the height of the image.
Declaration
public Nullable<RichTextUnit> Height { get; }
Property Value
System.Nullable<RichTextUnit>
|
Source
Gets the source of the image.
Declaration
public RichTextImageSource Source { get; }
Property Value
RichTextImageSource
|
Title
Gets the title of the image.
Declaration
public string Title { get; }
Property Value
System.String
|
Width
Gets the width of the image.
Declaration
public Nullable<RichTextUnit> Width { get; }
Property Value
System.Nullable<RichTextUnit>
|