Report.MoveLayout Property

Access Developer Reference

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.

Visual Basic for Applications
  Reports("Purchase Order").MoveLayout = True 

See Also