TextFrame.Orientation Property
Returns or sets text orientation. Read/write.
Namespace: Microsoft.Office.Interop.PowerPoint
Assembly: Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)
Syntax
'Declaration
Property Orientation As MsoTextOrientation
Get
Set
'Usage
Dim instance As TextFrame
Dim value As MsoTextOrientation
value = instance.Orientation
instance.Orientation = value
MsoTextOrientation Orientation { get; set; }
Property Value
Type: Microsoft.Office.Core.MsoTextOrientation
MsoTextOrientation
Remarks
Some of these constants may not be available to you, depending on the language support (U.S. English, for example) that you’ve selected or installed.
The value of the Orientation property can be one of these MsoTextOrientation constants.
msoTextOrientationDownward |
msoTextOrientationHorizontal |
msoTextOrientationHorizontalRotatedFarEast |
msoTextOrientationMixed |
msoTextOrientationUpward |
msoTextOrientationVertical |
msoTextOrientationVerticalFarEast |
Examples
This example orients the text horizontally within shape three on myDocument.
Set myDocument = ActivePresentation.Slides(1)
myDocument.Shapes(3).TextFrame.Orientation= msoTextOrientationHorizontal