ViewHorizontalBaseLineGuides Property

Microsoft Publisher Visual Basic

ViewHorizontalBaseLineGuides Property

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

expression.

expression    Required. An expression that returns a Document object.

Remarks

The default setting for this property is False.

Example

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

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