AllowReadingMode Property

Microsoft Word Visual Basic

AllowReadingMode Property

True indicates that Microsoft Word opens documents in Reading Layout view. Corresponds to the Allow starting in Reading Layout check box on the General tab of the Options dialog box.

expression.AllowReadingMode

expression    Required. An expression that returns an Options object.

Example

The following example toggles the Allow starting in Reading Layout check box.

    Sub ToggleReadingMode()
    If Options.AllowReadingMode = True Then
        Options.AllowReadingMode = False
    Else
        Options.AllowReadingMode = True
    End If
End Sub