SoftEdgeFormat object (Office)
Represents the soft edge effect in Office graphics.
Remarks
The soft edge effect creates a mask around the edge of an object and blends the object with the transparent edge. The result is a faded or "feathered" edge.
Example
This example sets the soft edge formatting for the text for the second shape on the second slide in a PowerPoint presentation.
With ActivePresentation.Slides(1).Shapes(2)
With .Text.Font
.Size = 32
.Name = "Palatino"
.Softedgeformat = msosoftedge6
End With
End With
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.