expression.PrintSection
expression Required. An expression that returns one of the objects in the Applies To list.
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