Napomena
Za pristup ovoj stranici potrebna je autorizacija. Možete se pokušati prijaviti ili promijeniti direktorije.
Za pristup ovoj stranici potrebna je autorizacija. Možete pokušati promijeniti direktorije.
Sets the direction of text in a text range to read from left to right.
Syntax
expression. LtrRun
expression A variable that represents a TextRange object.
Remarks
This method makes it possible to use text from both left-to-right and right-to-left languages in the same presentation.
Example
The following example finds all of the shapes on slide one that contain text and changes the text to read from left to right.
ActiveWindow.ViewType = ppViewSlide
For Each sh In ActivePresentation.Slides(1).Shapes
If sh.HasTextFrame Then
sh.TextFrame.TextRange.LtrRun
End If
Next
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.