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/Basic-Features.md
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,9 +38,16 @@ The formatted text of Rich Text Editor can be retrieved using the `HtmlText` pro
38
38
39
39
{% tabs %}
40
40
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
+
41
47
{% highlight C# %}
42
48
43
-
string HTMLText = richtexteditor.HtmlText;
49
+
SfRichTextEditor richTextEditor = new SfRichTextEditor();
50
+
richtexteditor.Text = "The rich text editor component is WYSIWYG editor that provides the best user experience to create and update the content";
0 commit comments