Font.NameBi Property (Word)
Returns or sets the name of the font in a right-to-left language document. Read/write String.
Syntax
expression .NameBi
expression An expression that returns a Font object.
Example
This example formats the selection with Arial font.
With Selection.Font
.NameBi = "Arial"
End With