IEffectFormat

Overview

IEffectFormat is a interface in Aspose.Slides FOSS for Java. Inherits from: IEffectParamSource.

Represents effect formatting properties.

Properties

NameTypeAccessDescription
noEffectsbooleanReadReturns {@code true} if all effects are disabled.
blurEffectIBlurReadReturns the blur effect, or {@code null} if not present.
fillOverlayEffectIFillOverlayReadReturns the fill overlay effect, or {@code null} if not present.
glowEffectIGlowReadReturns the glow effect, or {@code null} if not present.
innerShadowEffectIInnerShadowReadReturns the inner shadow effect, or {@code null} if not present.
outerShadowEffectIOuterShadowReadReturns the outer shadow effect, or {@code null} if not present.
presetShadowEffectIPresetShadowReadReturns the preset shadow effect, or {@code null} if not present.
reflectionEffectIReflectionReadReturns the reflection effect, or {@code null} if not present.
softEdgeEffectISoftEdgeReadReturns the soft edge effect, or {@code null} if not present.

Methods

SignatureDescription
isNoEffects()booleanReturns {@code true} if all effects are disabled.
getBlurEffect()IBlurReturns the blur effect, or {@code null} if not present.
setBlurEffect(value: IBlur)Sets or removes the blur effect.
getFillOverlayEffect()IFillOverlayReturns the fill overlay effect, or {@code null} if not present.
setFillOverlayEffect(value: IFillOverlay)Sets or removes the fill overlay effect.
getGlowEffect()IGlowReturns the glow effect, or {@code null} if not present.
setGlowEffect(value: IGlow)Sets or removes the glow effect.
getInnerShadowEffect()IInnerShadowReturns the inner shadow effect, or {@code null} if not present.
setInnerShadowEffect(value: IInnerShadow)Sets or removes the inner shadow effect.
getOuterShadowEffect()IOuterShadowReturns the outer shadow effect, or {@code null} if not present.
setOuterShadowEffect(value: IOuterShadow)Sets or removes the outer shadow effect.
getPresetShadowEffect()IPresetShadowReturns the preset shadow effect, or {@code null} if not present.
setPresetShadowEffect(value: IPresetShadow)Sets or removes the preset shadow effect.
getReflectionEffect()IReflectionReturns the reflection effect, or {@code null} if not present.
setReflectionEffect(value: IReflection)Sets or removes the reflection effect.
getSoftEdgeEffect()ISoftEdgeReturns the soft edge effect, or {@code null} if not present.
setSoftEdgeEffect(value: ISoftEdge)Sets or removes the soft edge effect.
asIEffectParamSource()IEffectParamSourceReturns this object as an {@link IEffectParamSource}.
setBlurEffect(radius: double, grow: boolean)Sets a blur effect with the specified parameters.
enableBlurEffect()Enables the blur effect (creates element if absent).
enableFillOverlayEffect()Enables the fill overlay effect (creates element if absent).
enableGlowEffect()Enables the glow effect (creates element if absent).
enableInnerShadowEffect()Enables the inner shadow effect (creates element if absent).
enableOuterShadowEffect()Enables the outer shadow effect (creates element if absent).
enablePresetShadowEffect()Enables the preset shadow effect (creates element if absent).
enableReflectionEffect()Enables the reflection effect (creates element if absent).
enableSoftEdgeEffect()Enables the soft edge effect (creates element if absent).
disableBlurEffect()Disables the blur effect (removes element).
disableFillOverlayEffect()Disables the fill overlay effect (removes element).
disableGlowEffect()Disables the glow effect (removes element).
disableInnerShadowEffect()Disables the inner shadow effect (removes element).
disableOuterShadowEffect()Disables the outer shadow effect (removes element).
disablePresetShadowEffect()Disables the preset shadow effect (removes element).
disableReflectionEffect()Disables the reflection effect (removes element).
disableSoftEdgeEffect()Disables the soft edge effect (removes element).

See Also