Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
True vertically orients text on Asian envelopes. Read/write Boolean.
Syntax
expression. Vertical
expression Required. A variable that represents an 'Envelope' object.
Example
This example determines if the active document is a mail merge envelope document and if the language setting is Chinese, and if so, sets the envelope's orientation to vertical and updates the current document.
Sub VerticalEnvelope()
If ActiveDocument.MailMerge.MainDocumentType = wdEnvelopes And
Application.Language = msoLanguageIDChineseHongKong Then
With ActiveDocument.Envelope
.Vertical = True
.UpdateDocument
End With
End If
End Sub
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.