Notes
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de vous connecter ou de modifier des répertoires.
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de modifier des répertoires.
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