Page.RulerGuides property (Publisher)
Returns a RulerGuides collection that represents gridlines used to align objects on a page.
Syntax
expression.RulerGuides
expression A variable that represents a Page object.
Return value
RulerGuides
Example
This example creates horizontal ruler guides and vertical ruler guides every half inch on the first page of the active publication.
Sub SetRulerGuides()
Dim intCount As Integer
Dim intPos As Integer
With ActiveDocument.Pages(1).RulerGuides
For intCount = 1 To 16
intPos = intPos + 36
.Add Position:=intPos, Type:=pbRulerGuideTypeVertical
Next intCount
intPos = 0
For intCount = 1 To 21
intPos = intPos + 36
.Add Position:=intPos, Type:=pbRulerGuideTypeHorizontal
Next intCount
End With
End Sub
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.