Skip to content

Commit 1c26529

Browse files
authored
Merge pull request #3585 from syncfusion-content/Tools-UG-Rich-text-editor
Update HTML text API content in SFRichTextEditor
2 parents 0bde8ee + a7c7166 commit 1c26529

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

MAUI/Rich-Text-Editor/Basic-Features.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,16 @@ The formatted text of Rich Text Editor can be retrieved using the `HtmlText` pro
3838

3939
{% tabs %}
4040

41+
{% highlight xaml %}
42+
43+
<richtexteditor:SfRichTextEditor HtmlText="The rich text editor component is WYSIWYG editor that provides the best user experience to create and update the content" />
44+
45+
{% endhighlight %}
46+
4147
{% highlight C# %}
4248

43-
string HTMLText = richtexteditor.HtmlText;
49+
SfRichTextEditor richTextEditor = new SfRichTextEditor();
50+
richtexteditor.HtmlText = "The rich text editor component is WYSIWYG editor that provides the best user experience to create and update the content";
4451

4552
{% endhighlight %}
4653

0 commit comments

Comments
 (0)