TextFrame2.HorizontalAnchor Property (PowerPoint)
Returns or sets the horizontal alignment of text in a text frame. Read/write.
Syntax
expression .HorizontalAnchor
expression An expression that returns a TextFrame2 object.
Return Value
MsoHorizontalanchor
Remarks
The value of the HorizontalAnchor property can be one of these MsoHorizontalAnchor constants.
msoAnchorNone |
msoHorizontalAnchorMixed |
msoAnchorCenter |
Example
The following example shows how to set the alignment for shape one on slide one to top center.
Public Sub HorizontalAnchor_Example()
With ActivePresentation.Slides(1).Shapes(1)
.TextFrame2.HorizontalAnchor = msoAnchorCenter
.TextFrame2.VerticalAnchor = msoAnchorTop
End With
End Sub