-
-
-//Remove the control from the parent Grid
-grid.Children.Remove(richTextBoxAdv);
-//Add the SfRichTextBoxAdv control to the Grid
-grid.Children.Add(richTextBoxAdv);
-
- |
-
-
-//Create a file stream
-MemoryStream memoryStream = new MemoryStream();
+**Using Package Manager Console:**
-//Save the document to the stream
-richTextBoxAdv.Save(memoryStream, FormatType.Docx);
+{% tabs %}
+{% highlight c# tabtitle="Package Manager" %}
+
+Install-Package Syncfusion.SfRichTextBoxAdv.UWP
+
+{% endhighlight %}
+{% endtabs %}
+
+{% endtabcontent %}
+
+{% tabcontent Assemblies %}
+
+The following assembly references are required to use the **SfRichTextBoxAdv** control in your application.
+
+- Syncfusion.SfRichTextBoxAdv.UWP
+- Syncfusion.DocIO.UWP
+- Syncfusion.SfRadialMenu.UWP
+- Syncfusion.SfShared.UWP
+
+{% endtabcontent %}
+
+{% endtabcontents %}
-//Remove the control from the parent Grid
-grid.Children.Remove(richTextBoxAdv);
+N> 1. Starting with v16.2.0.41 (2018 Vol 2), if you reference Syncfusion® assemblies from trial setup or from the NuGet feed, you also have to add "Syncfusion.Licensing" assembly reference and include a license key in your projects. Please refer to this [link](https://help.syncfusion.com/common/essential-studio/licensing/overview) to know about registering Syncfusion license key in your UWP application to use our components.
-//Create new instance of SfRichTextBoxAdv
-richTextBoxAdv = new SfRichTextBoxAdv();
+### Add SfRichTextBoxAdv control
-//Add the SfRichTextBoxAdv control to the Grid
-grid.Children.Add(richTextBoxAdv);
+{% tabcontents %}
-//Load the saved stream into SfRichTextBoxAdv
-richTextBoxAdv.Load(memoryStream, FormatType.Docx);
-
- |
-
-