TextFrame.HorizontalAnchor property (PowerPoint)

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

Syntax

expression.HorizontalAnchor

expression A variable that represents a TextFrame object.

Return value

MsoHorizontalAnchor

Remarks

The value returned by the HorizontalAnchor property can be one of these MsoHorizontalAnchor constants.

msoAnchorNone
msoHorizontalAnchorMixed
msoAnchorCenter

Example

This example sets the alignment of the text in shape one on myDocument to top centered.

Set myDocument = ActivePresentation.SlideMaster

With myDocument.Shapes(1)

    .TextFrame.HorizontalAnchor = msoAnchorCenter

    .TextFrame.VerticalAnchor = msoAnchorTop

End With

See also

TextFrame 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.