PrintAcrossAndThenDown Property

 

The PrintAcrossAndThenDown property returns or sets whether multiple worksheet pages will be printed across rows first and then down rather than 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 then down, false to print down then across

 

Example 1

This example demonstrates how to return whether 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