alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    Class RichTextEditorInlineMode

    A class used for configuring the SfRichTextEditor for inline editing. This class allows for a more compact editing interface by displaying the toolbar in a floating mode.

    Inheritance
    object
    ComponentBase
    OwningComponentBase
    SfOwningComponentBase
    RichTextEditorInlineMode
    Implements
    IComponent
    IHandleEvent
    IHandleAfterRender
    IDisposable
    Inherited Members
    ComponentBase.Assets
    ComponentBase.AssignedRenderMode
    ComponentBase.BuildRenderTree(RenderTreeBuilder)
    ComponentBase.DispatchExceptionAsync(Exception)
    ComponentBase.InvokeAsync(Action)
    ComponentBase.InvokeAsync(Func<Task>)
    ComponentBase.OnAfterRender(bool)
    ComponentBase.OnAfterRenderAsync(bool)
    ComponentBase.OnInitialized()
    ComponentBase.OnParametersSet()
    ComponentBase.RendererInfo
    ComponentBase.SetParametersAsync(ParameterView)
    ComponentBase.ShouldRender()
    ComponentBase.StateHasChanged()
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    OwningComponentBase.IsDisposed
    OwningComponentBase.ScopedServices
    Namespace: Syncfusion.Blazor.RichTextEditor
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class RichTextEditorInlineMode : SfOwningComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
    Examples

    In the following code example, inline edit mode is enabled.

    @using Syncfusion.Blazor.RichTextEditor;
    <SfRichTextEditor>
         <RichTextEditorInlineMode Enable="true" ShowOnSelection="false"/>
    </SfRichTextEditor>

    Constructors

    RichTextEditorInlineMode()

    Declaration
    public RichTextEditorInlineMode()

    Properties

    Enable

    Gets or sets whether to enable or disable the inline edit mode in the editor.

    Declaration
    [Parameter]
    public bool Enable { get; set; }
    Property Value
    Type Description
    bool

    true if inline editing mode is enabled; otherwise, false. The default value is false.

    Remarks

    When inline mode is enabled, the toolbar appears as a floating toolbar when the editable content is focused or selected, allowing for a streamlined editing experience directly within the text context.

    ShowOnSelection

    Gets or sets whether the inline toolbar is displayed upon selecting text or focusing on it.

    Declaration
    [Parameter]
    public bool ShowOnSelection { get; set; }
    Property Value
    Type Description
    bool

    true if the inline toolbar appears on text selection; otherwise, it appears on editor focus. The default value is true.

    Remarks

    This setting determines whether the toolbar should be visible automatically upon text selection, aiding quick access to formatting options without disrupting the workflow.

    Methods

    Dispose(bool)

    Dispose unmanaged resources in the Syncfusion Blazor component.

    Declaration
    protected override void Dispose(bool disposing)
    Parameters
    Type Name Description
    bool disposing

    Boolean value to dispose the object.

    Overrides
    OwningComponentBase.Dispose(bool)

    OnInitializedAsync()

    Method invoked when the component is ready to start.

    Declaration
    protected override Task OnInitializedAsync()
    Returns
    Type Description
    Task

    A System.Threading.Tasks.Task representing any asynchronous operation.

    Overrides
    ComponentBase.OnInitializedAsync()

    OnParametersSetAsync()

    Method invoked when the component has received parameters from its parent.

    Declaration
    protected override Task OnParametersSetAsync()
    Returns
    Type Description
    Task

    A System.Threading.Tasks.Task representing any asynchronous operation.

    Overrides
    ComponentBase.OnParametersSetAsync()

    Implements

    IComponent
    IHandleEvent
    IHandleAfterRender
    IDisposable
    In this article
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved