Blur

Overview

Blur is a class in Aspose.Slides FOSS for Java. Inherits from: ImageTransformOperation, IBlur.

Represents a Blur effect that is applied to the entire shape, including its fill.

This class provides 14 methods for working with Blur objects in Java programs. Available methods include: Blur, ImageTransformOperation, PVIObject, asIImageTransformOperation, asIPresentationComponent, getPresentation, getRadius, getSlide, initInternal, isGrow, setGrow, setRadius. All public members are accessible to any Java application after installing the Aspose.Slides FOSS for Java package. Properties: grow, presentation, radius, slide.

Properties

NameTypeAccessDescription
radiusdoubleReadGets the radius.
growbooleanReadGets the grow.
slideIBaseSlideReadGets the slide.
presentationIPresentationReadGets the presentation.

Methods

SignatureDescription
Blur()Creates an uninitialized Blur.
Blur(element: Element, saveCallback: Runnable)Creates a new Blur backed by the given XML element.
Blur(element: Element, saveCallback: Runnable, parentSlide: IBaseSlide)Creates a new Blur backed by the given XML element with a parent slide reference.
initInternal(element: Element, saveCallback: Runnable, parentSlide: IBaseSlide)Initializes this Blur with the given backing element, save callback, and parent slide.
getRadius()doubleReturns the radius.
setRadius(value: double)Sets the radius value.
isGrow()booleanReturns true if grow is set.
setGrow(value: boolean)Sets the grow value.
ImageTransformOperation()Creates an {@code ImageTransformOperation} with no parent slide.
asIImageTransformOperation()IImageTransformOperation
PVIObject()Creates a PVIObject with no parent slide.
getSlide()IBaseSlideReturns the slide.
getPresentation()IPresentationReturns the presentation.
asIPresentationComponent()IPresentationComponentReturns this object as an {@link IPresentationComponent}.

See Also