Share via


TextFrame2.VerticalAnchor Property

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

Namespace:  Microsoft.Office.Interop.PowerPoint
Assembly:  Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)

Syntax

'Declaration
Property VerticalAnchor As MsoVerticalAnchor
    Get
    Set
'Usage
Dim instance As TextFrame2
Dim value As MsoVerticalAnchor

value = instance.VerticalAnchor

instance.VerticalAnchor = value
MsoVerticalAnchor VerticalAnchor { get; set; }

Property Value

Type: Microsoft.Office.Core.MsoVerticalAnchor

Remarks

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

msoAnchorBottom

msoAnchorMiddle

msoAnchorTop

msoVerticalAnchorMixed

Examples

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

Reference

TextFrame2 Interface

TextFrame2 Members

Microsoft.Office.Interop.PowerPoint Namespace