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