InnerShadow

Overview

InnerShadow is a class in Aspose.Slides FOSS for Java. Inherits from: IInnerShadow, ISlideComponent.

Represents an inner shadow effect backed by an OOXML {@code <a:innerShdw>} element.

This class provides 13 methods for working with InnerShadow objects in Java programs. Available methods include: InnerShadow, asIImageTransformOperation, asIPresentationComponent, getBlurRadius, getDirection, getDistance, getPresentation, getShadowColor, getSlide, setBlurRadius, setDirection, setDistance. All public members are accessible to any Java application after installing the Aspose.Slides FOSS for Java package. Properties: blurRadius, direction, distance, presentation, shadowColor, slide.

Properties

NameTypeAccessDescription
blurRadiusdoubleReadGets the blur radius.
directiondoubleReadGets the direction.
distancedoubleReadGets the distance.
shadowColorIColorFormatReadGets the shadow color.
slideIBaseSlideReadGets the slide.
presentationIPresentationReadGets the presentation.

Methods

SignatureDescription
InnerShadow(element: Element, saveCallback: Runnable)Creates a new InnerShadow backed by the given XML element.
InnerShadow(element: Element, saveCallback: Runnable, parentSlide: IBaseSlide)Creates a new InnerShadow backed by the given XML element with a parent slide reference.
getBlurRadius()doubleReturns the blur radius.
setBlurRadius(value: double)Sets the blur radius value.
getDirection()doubleReturns the direction.
setDirection(value: double)Sets the direction value.
getDistance()doubleReturns the distance.
setDistance(value: double)Sets the distance value.
getShadowColor()IColorFormatReturns the shadow color.
getSlide()IBaseSlideReturns the slide.
asIPresentationComponent()IPresentationComponentCasts the inner shadow to an IPresentationComponent
asIImageTransformOperation()IImageTransformOperationCasts the inner shadow to an IImageTransformOperation
getPresentation()IPresentationReturns the presentation.

See Also