com.aspose.slides.pptx.effects
Class Blur

java.lang.Object
  extended by com.aspose.slides.pptx.effects.ImageTransformOperationEx
      extended by com.aspose.slides.pptx.effects.Blur
All Implemented Interfaces:
IPresentationComponent, ISlideComponent

public class Blur
extends ImageTransformOperationEx

Blur effect.

Applied to the entire shape, including its fill. All color channels, including alpha, are affected.


Nested Class Summary
 
Nested classes/interfaces inherited from class com.aspose.slides.pptx.effects.ImageTransformOperationEx
ImageTransformOperationEx.PixelEffectDelegate, ImageTransformOperationEx.PixelEffectDelegate1
 
Constructor Summary
Blur(double radius, boolean grow)
          Blur effect constructor.
 
Method Summary
 double getRadius()
          Returns the radius of a blur.
 boolean isGrow()
          Determines whether the bounds of the object should be grown as a result of the blurring.
 void setGrow(boolean value)
          Sets whether the bounds of the object should be grown as a result of the blurring.
 void setRadius(double value)
          Sets the radius of a blur.
 
Methods inherited from class com.aspose.slides.pptx.effects.ImageTransformOperationEx
getPresentation, getSlide
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Blur

public Blur(double radius,
            boolean grow)
Blur effect constructor.

Parameters:
radius - The radius of blur.
grow - Specifies 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
Method Detail

getRadius

public double getRadius()
Returns the radius of a blur.


setRadius

public void setRadius(double value)
Sets the radius of a blur.


isGrow

public boolean isGrow()
Determines whether the bounds of the object should be grown as a result of the blurring.


setGrow

public void setGrow(boolean value)
Sets whether the bounds of the object should be grown as a result of the blurring.