Class RichTextEditorContextMenuItemBase
Base class representing a context menu item for RadRichTextEditor.
Inheritance
Namespace: Telerik.Maui.Controls.RichTextEditor
Assembly: Telerik.Maui.Controls.dll
Syntax
public abstract class RichTextEditorContextMenuItemBase : BindableObject
Constructors
RichTextEditorContextMenuItemBase()
Declaration
protected RichTextEditorContextMenuItemBase()
Fields
TextProperty
Identifies the Text property.
Declaration
public static readonly BindableProperty TextProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
RichTextEditor
Gets the RadRichTextEditor this RichTextEditorContextMenuItemBase is associated with. This property is updated when this RichTextEditorContextMenuItemBase is added to or removed from the corresponding ContextMenuItems collection of the owning RadRichTextEditor.
Declaration
protected RadRichTextEditor RichTextEditor { get; }
Property Value
RadRichTextEditor
|
Text
Gets or sets the text of this RichTextEditorContextMenuItemBase.
Declaration
public string Text { get; set; }
Property Value
System.String
|
Methods
OnAttachedTo(RadRichTextEditor)
Called when this RichTextEditorContextMenuItemBase is added to its RadRichTextEditor.
Declaration
protected virtual void OnAttachedTo(RadRichTextEditor richTextEditor)
Parameters
RadRichTextEditor
richTextEditor
|
OnDetachedFrom(RadRichTextEditor)
Called when this RichTextEditorContextMenuItemBase is removed from its RadRichTextEditor.
Declaration
protected virtual void OnDetachedFrom(RadRichTextEditor richTextEditor)
Parameters
RadRichTextEditor
richTextEditor
|