IEffectFormat
Overview
IEffectFormat is a interface in Aspose.Slides FOSS for Java.
Inherits from: IEffectParamSource.
Represents effect formatting properties.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
noEffects | boolean | Read | Returns {@code true} if all effects are disabled. |
blurEffect | IBlur | Read | Returns the blur effect, or {@code null} if not present. |
fillOverlayEffect | IFillOverlay | Read | Returns the fill overlay effect, or {@code null} if not present. |
glowEffect | IGlow | Read | Returns the glow effect, or {@code null} if not present. |
innerShadowEffect | IInnerShadow | Read | Returns the inner shadow effect, or {@code null} if not present. |
outerShadowEffect | IOuterShadow | Read | Returns the outer shadow effect, or {@code null} if not present. |
presetShadowEffect | IPresetShadow | Read | Returns the preset shadow effect, or {@code null} if not present. |
reflectionEffect | IReflection | Read | Returns the reflection effect, or {@code null} if not present. |
softEdgeEffect | ISoftEdge | Read | Returns the soft edge effect, or {@code null} if not present. |
Methods
| Signature | Description |
|---|---|
isNoEffects() → boolean | Returns {@code true} if all effects are disabled. |
getBlurEffect() → IBlur | Returns the blur effect, or {@code null} if not present. |
setBlurEffect(value: IBlur) | Sets or removes the blur effect. |
getFillOverlayEffect() → IFillOverlay | Returns the fill overlay effect, or {@code null} if not present. |
setFillOverlayEffect(value: IFillOverlay) | Sets or removes the fill overlay effect. |
getGlowEffect() → IGlow | Returns the glow effect, or {@code null} if not present. |
setGlowEffect(value: IGlow) | Sets or removes the glow effect. |
getInnerShadowEffect() → IInnerShadow | Returns the inner shadow effect, or {@code null} if not present. |
setInnerShadowEffect(value: IInnerShadow) | Sets or removes the inner shadow effect. |
getOuterShadowEffect() → IOuterShadow | Returns the outer shadow effect, or {@code null} if not present. |
setOuterShadowEffect(value: IOuterShadow) | Sets or removes the outer shadow effect. |
getPresetShadowEffect() → IPresetShadow | Returns the preset shadow effect, or {@code null} if not present. |
setPresetShadowEffect(value: IPresetShadow) | Sets or removes the preset shadow effect. |
getReflectionEffect() → IReflection | Returns the reflection effect, or {@code null} if not present. |
setReflectionEffect(value: IReflection) | Sets or removes the reflection effect. |
getSoftEdgeEffect() → ISoftEdge | Returns the soft edge effect, or {@code null} if not present. |
setSoftEdgeEffect(value: ISoftEdge) | Sets or removes the soft edge effect. |
asIEffectParamSource() → IEffectParamSource | Returns 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). |