Class RedactSettings
Represents the settings of a redact in the SfImageEditor.
Inheritance
Namespace: Syncfusion.Blazor.ImageEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class RedactSettings : Object
Remarks
The GetRedactsAsync() method is used to get the redacts settings to perform SelectRedactAsync(String) and DeleteRedactAsync(String).
Constructors
RedactSettings()
Declaration
public RedactSettings()
Properties
BlurIntensity
Gets or sets the intensity of the blur effect used in blur-type redactions in the SfImageEditor.
Declaration
public Nullable<double> BlurIntensity { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> | A double value that specifies the intensity of the blur effect used in blur-type redactions. |
Height
Gets or sets the height of the redact in the SfImageEditor.
Declaration
public Nullable<double> Height { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> | A double value that specifies the height of the redact. |
ID
Gets or sets the id of the redact in the SfImageEditor.
Declaration
public string ID { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string value that specifies the id of the redact. |
PixelSize
Gets or sets the pixel size for the pixelate-type redaction in the SfImageEditor.
Declaration
public Nullable<double> PixelSize { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> | A double value that specifies the pixel size for the pixelate-type redaction. |
StartX
Gets or sets the x-coordinate of the start point in the SfImageEditor.
Declaration
public double StartX { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double value that specifies the x-coordinate of the start point. |
StartY
Gets or sets the y-coordinate of the start point in the SfImageEditor.
Declaration
public double StartY { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double value that specifies the y-coordinate of the start point. |
Type
Gets or sets the type of the redact in the SfImageEditor.
Declaration
public RedactType Type { get; set; }
Property Value
Type | Description |
---|---|
RedactType | An Enum value that specifies the type of the redact such as Blur and Pixelate. |
Width
Gets or sets the width of the redact in the SfImageEditor.
Declaration
public Nullable<double> Width { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> | A double value that specifies the width of the redact. |