PrintableRect Object

Microsoft Publisher Visual Basic

PrintableRect Object

AdvancedPrintOptions PrintableRect

Represents the sheet area within which the specified printer will print. The printable rectangle is determined by the printer based on the sheet size specified. The printable rectangle of the printer sheet should not be confused with the area within the margins of the publication page; it may be larger or smaller than the publication page.

Using the PrintableRect object

Use the PrintableRect property of the AdvancedPrintOptions object to return a PrintableRect object. The following example returns printable rectangle boundaries for the printer sheet of the active publication.

    Sub ListPrintableRectBoundaries()

With ActiveDocument.AdvancedPrintOptions.PrintableRect

    Debug.Print "Printable area is " & _
            PointsToInches(.Width) & _
            " by " & PointsToInches(.Height) & " inches."
    Debug.Print "Left Boundary: " & PointsToInches(.Left) & _
                    " inches (from left)."
    Debug.Print "Right Boundary: " & PointsToInches(.Left + .Width) & _
                    " inches (from left)."
    Debug.Print "Top Boundary: " & PointsToInches(.Top) & _
                    " inches(from top)."
    Debug.Print "Bottom Boundary: " & PointsToInches(.Top + .Height) & _
                    " inches(from top)."
    
End With

End Sub

  

Remarks

In cases in which the printer sheet and the publication page size are identical, the publication page is centered on the printer sheet and none of the printer's marks print, even if they are selected.