Skip to content

Commit

Permalink
Merge pull request #362 from Syncfusion-Content/hotfix/hotfix-v21.2.3
Browse files Browse the repository at this point in the history
DOCINFRA-2341_merged_using_automation
  • Loading branch information
SyncfusionBuild authored May 4, 2023
2 parents 59b0c02 + 4c7582a commit ce1757e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions uwp/RichTextBox/Comment.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,22 @@ private void RichTextBoxAdv_CommentAdding(object obj, CommentAddingEventArgs arg
{% endtabs %}
![Comment_img2](Comment_images/Comment_img2.jpeg)

## Visibility of comment pane

The SfRichTextBoxAdv control allows you to determine the visibility of the comment pane using the [IsCommentPaneVisible](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.RichTextBoxAdv.EditorSettings.html#Syncfusion_UI_Xaml_RichTextBoxAdv_EditorSettings_IsCommentPaneVisible) property of the [EditorSettings](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.RichTextBoxAdv.EditorSettings.html) class.

The following code example illustrates how to check whether the comment pane is currently visible or hidden:

{% tabs %}
{% highlight c# %}
SfRichTextBoxAdv richTextBoxAdv = new SfRichTextBoxAdv();
bool isCommentPaneVisible = richTextBoxAdv.EditorSettings.IsCommentPaneVisible;

{% endhighlight %}
{% highlight VB %}
Dim richTextBoxAdv As New SfRichTextBoxAdv()
Dim isCommentPaneVisible As Boolean = richTextBoxAdv.EditorSettings.IsCommentPaneVisible

{% endhighlight %}
{% endtabs %}

0 comments on commit ce1757e

Please sign in to comment.