You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: MAUI/Rich-Text-Editor/Advanced-Features.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ The Rich Text Editor control displays the plain text that can be set using the [
26
26
{% highlight C# %}
27
27
28
28
SfRichTextEditor richTextEditor = new SfRichTextEditor();
29
-
richtexteditor.Text = "The rich text editor component is WYSIWYG editor that provides the best user experience to create and update the content";
29
+
richTextEditor.Text = "The rich text editor component is WYSIWYG editor that provides the best user experience to create and update the content";
30
30
31
31
{% endhighlight %}
32
32
@@ -49,7 +49,7 @@ The [HtmlText](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.RichTextEdito
49
49
{% highlight C# %}
50
50
51
51
SfRichTextEditor richTextEditor = new SfRichTextEditor();
52
-
richtexteditor.HtmlText = "The <b>rich text editor</b> component is WYSIWYG editor that provides the best user experience to create and update the content";
52
+
richTextEditor.HtmlText = "The <b>rich text editor</b> component is WYSIWYG editor that provides the best user experience to create and update the content";
0 commit comments