PrintAcrossAndThenDown Property
The PrintAcrossAndThenDown property returns or sets if multiple worksheet pages are printed across rows first and then down (versus down columns first and then across). Returns a Boolean.
Syntax
object.PrintAcrossAndThenDown
object.PrintAcrossAndThenDown = Across
Parameter | Type | Description |
Across | Boolean | required, true to print across first |
Example 1
This example demonstrates how to return if multiple pages will be printed across rows first and then down or down columns first and then across.
Debug.Print WksPageSetup.PrintAcrossAndThenDown
Example 2
This example demonstrates how to print multiple pages across rows first then down.
WksPageSetup.PrintAcrossAndThenDown = True
Used by: WksPageSetup object