Skip to content

Latest commit

 

History

History
59 lines (36 loc) · 1.57 KB

Office.PictureEffects.md

File metadata and controls

59 lines (36 loc) · 1.57 KB
title api_name ms.assetid ms.date ms.localizationpriority
PictureEffects object (Office)
Office.PictureEffects
bc0e1cfd-7328-360d-872e-c71ae93162ed
01/23/2019
medium

PictureEffects object (Office)

Represents a collection of PictureEffect objects.

Remarks

Picture effects are processed as a chain composed of individual items that are applied in sequence to create the final composited image. An effects chain will allow an effect to be added to the chain, reordered, or removed from the chain.

Example

The following code sets several PictureEffect fill properties on a shape in a Microsoft PowerPoint slide.

Sub PictureEffectSample() 
' Setup a slide with one picture shape. 
With ActivePresentation.Slides(1).Shapes(1).Fill.PictureEffects 
 
 ' Insert a 150% Saturation effect. 
 .Insert(msoEffectSaturation).EffectParameters(1).Value = 1.5 
 
 ' Insert Brightness/Contrast effect and set values to -50% Brightness and +25% Contrast. 
 Dim brightnessContrast As PictureEffect 
 Set brightnessContrast = .Insert(msoEffectBrightnessContrast) 
 brightnessContrast.EffectParameters(1).Value = -0.5 
 brightnessContrast.EffectParameters(2).Value = 0.25 
 
 ' Remove all Picture effects. 
 While .Count > 0 
 .Delete (1) 
 Wend 
 
End With 
End Sub 

See also

[!includeSupport and feedback]