EffectFormat

Overview

EffectFormat is a class in Aspose.Slides FOSS for Python. Inherits from: PVIObject, ISlideComponent, IPresentationComponent.

Represents effect properties of shape.

This class provides 16 methods for working with EffectFormat objects in Python programs. Available methods include: disable_blur_effect, disable_fill_overlay_effect, disable_glow_effect, disable_inner_shadow_effect, disable_outer_shadow_effect, disable_preset_shadow_effect, disable_reflection_effect, disable_soft_edge_effect, enable_fill_overlay_effect, enable_glow_effect, enable_inner_shadow_effect, enable_outer_shadow_effect, and 4 additional methods. All public members are accessible to any Python application after installing the Aspose.Slides FOSS for Python package. Properties: as_i_effect_param_source, as_i_presentation_component, blur_effect, fill_overlay_effect, glow_effect, inner_shadow_effect, and 7 more.

Properties

NameTypeAccessDescription
is_no_effectsboolReadReturns true if all effects are disabled (as just created, default EffectFormat object).
blur_effectIBlurRead/WriteBlur effect.
fill_overlay_effectIFillOverlayRead/WriteFill overlay effect.
glow_effectIGlowRead/WriteGlow effect.
inner_shadow_effectIInnerShadowRead/WriteInner shadow.
outer_shadow_effectIOuterShadowRead/WriteOuter shadow.
preset_shadow_effectIPresetShadowRead/WritePreset shadow.
reflection_effectIReflectionRead/WriteReflection.
soft_edge_effectISoftEdgeRead/WriteSoft edge.
as_i_effect_param_sourceIEffectParamSourceReadGets the as i effect param source.
as_i_presentation_componentIPresentationComponentReadAllows to get base IPresentationComponent interface.
slideIBaseSlideReadGets the slide.
presentationIPresentationReadGets the presentation.

Methods

SignatureDescription
set_blur_effect(radius, grow)Sets the blur effect value.
enable_fill_overlay_effect()Activates the fill overlay effect on the shape
enable_glow_effect()Activates the glow effect on the shape
enable_inner_shadow_effect()Activates the inner shadow effect on the shape
enable_outer_shadow_effect()Activates the outer shadow effect on the shape
enable_preset_shadow_effect()Activates the preset shadow effect on the shape
enable_reflection_effect()Activates the reflection effect on the shape
enable_soft_edge_effect()Activates the soft edge effect on the shape
disable_blur_effect()Deactivates any blur effect on the shape
disable_fill_overlay_effect()Deactivates the fill overlay effect on the shape
disable_glow_effect()Deactivates the glow effect on the shape
disable_inner_shadow_effect()Deactivates the inner shadow effect on the shape
disable_outer_shadow_effect()Deactivates the outer shadow effect on the shape
disable_preset_shadow_effect()Deactivates the preset shadow effect on the shape
disable_reflection_effect()Deactivates the reflection effect on the shape
disable_soft_edge_effect()Deactivates the soft edge effect on the shape

See Also