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: 1 addition & 2 deletions MAUI/Rich-Text-Editor/Migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,5 +175,4 @@ To migrate easily from [`Xamarin SfRichTextEditor`](https://help.syncfusion.com/
* `Nested ScrollView:` RichTextEditor scroll behavior is incompatible with parent ScrollView containers and will be automatically disabled.
* `AutoSize Configuration:` To prevent off-screen rendering when AutoSize is enabled, configure the MaximumHeightRequest property to constrain the control within viewport boundaries.
* `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.

* `Supported Content Types:` Editor content is restricted to plain text and HTML markup formats only.
39 changes: 39 additions & 0 deletions MAUI/Rich-Text-Editor/Toolbar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
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 tooltip

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

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

N> The link quick tooltip will automatically disappear after 2 seconds if there is no user interaction.

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