ViewVerticalBaseLineGuides Property

Microsoft Publisher Visual Basic

ViewVerticalBaseLineGuides Property

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.

expression.ViewVerticalBaseLineGuides

expression    Required. An expression that returns a Document object.

Remarks

The default setting for this property is False.

Example

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

      Dim objDocument As Document
Set objDocument = ActiveDocument
objDocument.ViewVerticalBaseLineGuides = True