Share via


ViewVerticalBaseLineGuides Property.ViewVerticalBaseLineGuides Property

Publisher Developer Reference

Sets or returns a Boolean that represents whether or not the vertical baseline guides are visible in the specified Document object. True if they are visible. False if they are not visible. Read/write.

Syntax

expression.ViewVerticalBaseLineGuides

expression   A variable that represents a ViewVerticalBaseLineGuides Property object.

Return Value
Boolean

Remarks

The default setting for this property is False.

Example

The following example makes the vertical baseline guides visible in the active document.

Visual Basic for Applications
  Dim objDocument As Document
Set objDocument = ActiveDocument
objDocument.ViewVerticalBaseLineGuides = True

See Also