Share via


Report.PrintSection Property (Access)

The PrintSection property specifies whether a section should be printed. Read/write Boolean.

Syntax

expression .PrintSection

expression A variable that represents a Report object.

Remarks

The PrintSection property uses the following settings.

Setting

Description

True

(Default) The section is printed.

False

The section isn't printed.

Note

To set this property, specify a macro or event procedure for a section's OnFormat property.

Microsoft Access sets this property to True before each section's Format event.

Example

The following example does not print the section "PageHeaderSection" of the "Product Summary" report.

Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As Integer) 
 
 Reports("Product Summary").PrintSection = False 
 
End Sub

See Also

Concepts

Report Object

Report Object Members