Edit

Share via


TextFrame2.VerticalAnchor property (PowerPoint)

Returns or sets the vertical alignment of text in a text frame. Read/write.

Syntax

expression.VerticalAnchor

expression An expression that returns a TextFrame2 object.

Remarks

The value of the VerticalAnchor property can be one of these MsoVerticalAnchor constants.

msoAnchorBottom
msoAnchorMiddle
msoAnchorTop
msoVerticalAnchorMixed

Example

The following example shows how to set the alignment for shape one on slide one to top center.

Public Sub VerticalAnchor_Example()



    With ActivePresentation.Slides(1).Shapes(1)

        .TextFrame2.HorizontalAnchor = msoAnchorCenter

        .TextFrame2.VerticalAnchor = msoAnchorTop

    End With

    

End Sub

See also

TextFrame2 Object

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.