IBlur
All Implemented Interfaces: com.aspose.slides.IImageTransformOperation, com.aspose.slides.IAccessiblePVIObject
public interface IBlur extends IImageTransformOperation, IAccessiblePVIObject<IBlurEffectiveData>
Represents a Blur effect that is applied to the entire shape, including its fill. All color channels, including alpha, are affected.
Methods
Method | Description |
---|---|
getRadius() | Returns or sets blur radius. |
setRadius(double value) | Returns or sets blur radius. |
getGrow() | Determines whether the bounds of the object should be grown as a result of the blurring. |
setGrow(boolean value) | Determines whether the bounds of the object should be grown as a result of the blurring. |
getRadius()
public abstract double getRadius()
Returns or sets blur radius. Read/write double.
Returns: double
setRadius(double value)
public abstract void setRadius(double value)
Returns or sets blur radius. Read/write double.
Parameters:
Parameter | Type | Description |
---|---|---|
value | double |
getGrow()
public abstract boolean getGrow()
Determines whether the bounds of the object should be grown as a result of the blurring. True indicates the bounds are grown while false indicates that they are not. Read/write boolean.
Returns: boolean
setGrow(boolean value)
public abstract void setGrow(boolean value)
Determines whether the bounds of the object should be grown as a result of the blurring. True indicates the bounds are grown while false indicates that they are not. Read/write boolean.
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |