NameBi Property

Microsoft Word Visual Basic

NameBi Property

       

Returns or sets the name of the font in a right-to-left language document. Read/write String.

expression.NameBi

expression   Required. An expression that returns a Font object.

Remarks

For more information on using Word with right-to-left languages, see Word features for right-to-left languages.

Example

This example formats the selection with Arial font.

With Selection.Font
    .NameBi = "Arial"
End With