How to Identify Inserted Annotations in Blazor Image Editor?
This article explains how to detect which annotation (shape or text) is inserted into the Blazor Image Editor by using the ShapeChanging event.
When a user inserts a shape or annotation into the Image Editor, the ShapeChanging event is triggered. You can use the event arguments (args.Action) to check if the action is “insert”.
<SfImageEditor @ref="ImageEditor" Height="500">
<ImageEditorEvents ShapeChanging="ShapeChanging"></ImageEditorEvents>
</SfImageEditor>
@code {
private void ShapeChanging(ShapeChangeEventArgs args)
{
if(args.Action == "insert")
{
}
}
}
Sample
View Sample in Syncfusion Playground
Conclusion
I hope you enjoyed learning how to identify inserted annotations in Blazor Image Editor.
You can refer to our Blazor Image Editor feature tour page to learn about its other groundbreaking feature representations. You can also explore our Documentation to understand how to present and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!