Font.SizeBi Property

Word Developer Reference

Returns or sets the font size in points. Read/write Single.

Syntax

expression.SizeBi

expression   An expression that returns a Font object.

Remarks

The SizeBi property applies to text in a right-to-left language.

Example

This example sets the font size of the first word to 20 points.

Visual Basic for Applications
  With ActiveDocument.Paragraphs(1).Range
    .Words(1).Font.SizeBi = 20
End With

See Also