Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions MAUI/Rich-Text-Editor/Migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,3 +177,6 @@ To migrate easily from [`Xamarin SfRichTextEditor`](https://help.syncfusion.com/
* `Keyboard Interaction:` Toolbar visibility is affected when MaximumHeightRequest extends into the on-screen keyboard area, causing automatic hiding.
* `Supported Content Types:` Editor content is restricted to plain text and HTML markup formats only.

## Breaking Changes

* `Multiple selection:` The workflow for selecting multiple toolbar items has been significantly enhanced for better usability and efficiency.
37 changes: 37 additions & 0 deletions MAUI/Rich-Text-Editor/Toolbar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
layout: post
title: Toolbar in .NET MAUI Rich Text Editor | Syncfusion®
description: Learn here all about Toolbar features in Syncfusion® .NET MAUI Rich Text Editor (SfRichTextEditor) control.
platform: maui
control: Rich Text Editor
documentation: ug
---

# Toolbar in .NET MAUI Rich Text Editor (SfRichTextEditor)

## Toolbar position

The Rich Text Editor allows you to position the toolbar at the top or bottom of the content area, depending on your layout requirements. By default, the toolbar appears at the top on Windows and macOS, and at the bottom on Android and iOS for better accessibility.

{% tabs %}

{% highlight xaml %}

<rte:SfRichTextEditor ToolbarPosition="Bottom" />

{% endhighlight %}

{% highlight c# %}

SfRichTextEditor richTextEditor = new SfRichTextEditor();
richTextEditor.ToolbarPosition = RichTextEditorToolbarPosition.Bottom;

{% endhighlight %}
{% endtabs %}

## Link quick toolbar

The link quick toolbar appears when you click on a link in the editor. The Rich Text Editor provides essential tools in the link quick toolbar, including “Open”, “Edit Link” and “Remove Link”.

![.NET MAUI Rich Text Editor Link Quick Toolbar](images/richtexteditor-link-quick-toolbar.png)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@EzhilarasanElangovan31 share image where hyperlink tooltip not hides the RTE content

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions maui-toc.html
Original file line number Diff line number Diff line change
Expand Up @@ -1141,6 +1141,7 @@
<li><a href="/maui/Rich-Text-Editor/Getting-Started">Getting Started</a></li>
<li><a href="/maui/Rich-Text-Editor/Migration">Migrate from Xamarin.Forms</a></li>
<li><a href="/maui/Rich-Text-Editor/Advanced-Features">Advanced Features</a></li>
<li><a href="/maui/Rich-Text-Editor/Toolbar">Toolbar</a></li>
<li><a href="/maui/Rich-Text-Editor/AutoSize">AutoSize</a></li>
<li><a href="/maui/Rich-Text-Editor/Image-Insertion">Image Insertion</a></li>
<li><a href="/maui/Rich-Text-Editor/Table-Insertion">Table Insertion</a></li>
Expand Down