diff --git a/xamarin-android/SfImageEditor/how-to/Clear-all-annotations.md b/xamarin-android/SfImageEditor/how-to/Clear-all-annotations.md index 8d12e596..f61a81e1 100644 --- a/xamarin-android/SfImageEditor/how-to/Clear-all-annotations.md +++ b/xamarin-android/SfImageEditor/how-to/Clear-all-annotations.md @@ -9,7 +9,7 @@ documentation : ug # Clear all annotations (Text, Shapes, Paths, etc) from Image Editor -By invoking the `ClearAnnotations` method of SfImageEditor, you can clear all the annotations (Text, Shapes, Path, and CustomView) added in the image editor without resetting the other edits (Rotation, Flip, Crop, Effects, etc). +By invoking the [`ClearAnnotations`](https://help.syncfusion.com/cr/xamarin-android/Syncfusion.SfImageEditor.Android.SfImageEditor.html#Syncfusion_SfImageEditor_Android_SfImageEditor_ClearAnnotations) method of SfImageEditor, you can clear all the annotations (Text, Shapes, Path, and CustomView) added in the image editor without resetting the other edits (Rotation, Flip, Crop, Effects, etc). The following code sample demonstrates this. diff --git a/xamarin-android/SfImageEditor/how-to/Select-shapes-programmatically.md b/xamarin-android/SfImageEditor/how-to/Select-shapes-programmatically.md index 5d6b0fa3..b0b69d80 100644 --- a/xamarin-android/SfImageEditor/how-to/Select-shapes-programmatically.md +++ b/xamarin-android/SfImageEditor/how-to/Select-shapes-programmatically.md @@ -9,7 +9,7 @@ documentation: ug # Select annotations programmatically in Image Editor (SfImageEditor) -In ImageEditor, the Unique ID is generated for all annotations (Text, Shapes, Paths, and CustomViews) when they are added to the image editor and you can get this Unique ID from the ItemsSelected event arguments or from the serialized JSON. By passing this Unique ID to the `SelectShape` method of SfImageEditor, you can select the particular annotation programmatically. +In ImageEditor, the Unique ID is generated for all annotations (Text, Shapes, Paths, and CustomViews) when they are added to the image editor and you can get this Unique ID from the ItemsSelected event arguments or from the serialized JSON. By passing this Unique ID to the [`SelectShape`](https://help.syncfusion.com/cr/xamarin-android/Syncfusion.SfImageEditor.Android.SfImageEditor.html#Syncfusion_SfImageEditor_Android_SfImageEditor_SelectShape_System_Int32_) method of SfImageEditor, you can select the particular annotation programmatically. The following code sample demonstrates this.