PrintFractionalWidths Property

Applies To

Document object.

Description

True if the specified document is formatted to use fractional point spacing to display and print characters on the Macintosh. Read/write Boolean.

Note In Windows, this property always returns False.

See Also

PrintOut method (Application, Document, and Window objects).

Example

This example enables fractional widths and then prints the active document.

With ActiveDocument
    .PrintFractionalWidths = True
    .PrintOut
End With
This example returns the fractional widths setting from the Print tab in the Options dialog box (Tools menu).

state = Documents("Report.doc").PrintFractionalWidths