Share via


ViewHorizontalBaseLineGuides Property.ViewHorizontalBaseLineGuides Property

Publisher Developer Reference

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.

Syntax

expression.

expression   A variable that represents a ViewHorizontalBaseLineGuides Property object.

Return Value
Boolean

Remarks

The default setting for this property is False.

Example

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

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

See Also