Class ShapeChangedEventArgs
Provides the information about the ShapeChanged event callbacks.
Inheritance
System.Object
ShapeChangedEventArgs
Namespace: Syncfusion.Blazor.ImageEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class ShapeChangedEventArgs : Object
Constructors
ShapeChangedEventArgs()
Declaration
public ShapeChangedEventArgs()
Properties
Action
Gets the name of the action to be performed.
Declaration
public string Action { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string value that represents the type of customization done in shapes. |
Remarks
The actions that will be performed are insert, select, delete, resize, move, stroke width, stroke color, fill color, font family, font size, font style, font color.
ShapeSettings
Gets the shape settings after inserting, deleting, moving, resizing, and customization of the shape can be performed.
Declaration
public ShapeSettings ShapeSettings { get; set; }
Property Value
Type | Description |
---|---|
ShapeSettings | A ShapeSettings object that represents all the details of the shape including its position, stroke color, stroke width, fill color etc. |