Skip to content

Commit c762185

Browse files
Refine AnnotationsLoaded event description
Removed redundant sentence in AnnotationsLoaded event section.
1 parent 106576d commit c762185

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Document-Processing/PDF/PDF-Viewer/maui/Annotation-Collection.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,12 @@ private void OnDocumentLoaded(object sender, EventArgs e)
4242
{% endtabs %}
4343

4444
## AnnotationsLoaded event
45-
The AnnotationsLoaded event occurs after all annotations in the PDF have finished loading, either when the document is opened or when annotations are imported. You can use this event to perform actions once annotations are fully available in the viewer. The following example explains how to wire and handle the event.
45+
The AnnotationsLoaded event occurs after all annotations in the PDF have finished loading, either when the document is opened or when annotations are imported. You can use this event to perform actions once annotations are fully available in the viewer.
46+
The following example explains how to wire and handle the event.
4647

4748
{% tabs %}
4849
{% highlight c# %}
50+
4951
void WireAnnotationsLoadedEvent()
5052
{
5153
// Wire the annotations loaded event of [SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html).
@@ -56,5 +58,6 @@ private void OnAnnotationsLoaded(object? sender, EventArgs e)
5658
{
5759
Debug.WriteLine("All existing annotations have been loaded.");
5860
}
61+
5962
{% endhighlight %}
6063
{% endtabs %}

0 commit comments

Comments
 (0)