Report.MoveLayout property (Access)
The MoveLayout property specifies whether Microsoft Access should move to the next printing location on the page. Read/write Boolean.
Syntax
expression.MoveLayout
expression A variable that represents a Report object.
Remarks
The MoveLayout property uses the following settings.
Setting | Description |
---|---|
True | (Default) The section's Left and Top properties are advanced to the next print location. |
False | The section's Left and Top properties are unchanged. |
To set this property, specify an 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 sets the MoveLayout property for the Purchase Order report to its default setting.
Reports("Purchase Order").MoveLayout = True
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.