返回或设置一个 AcPrintItemLayout 常量,表明打印机是按照先行后列安排布局,还是先列后行。可读写。
| AcPrintItemLayout 可以是下列 AcPrintItemLayout 常量之一: | 
| acPRHorizontalColumnLayout 先行后列排列。 | 
| acPRVerticalColumnLayout 先列后行排列。 | 
expression.ItemLayout
expression 必需。返回“Applies To”列表中的一个对象的表达式。
下面的示例为当前项目中的第一个窗体设置各种打印机设置。
With Forms(0).Printer
    .TopMargin = 1440
    .BottomMargin = 1440
    .LeftMargin = 1440
    .RightMargin = 1440
    .ColumnSpacing = 360
    .RowSpacing = 360
    .ColorMode = acPRCMColor
    .DataOnly = False
    .DefaultSize = False
    .ItemSizeHeight = 2880
    .ItemSizeWidth = 2880
    .ItemLayout = acPRVerticalColumnLayout
    .ItemsAcross = 6
    .Copies = 1
    .Orientation = acPRORLandscape
    .Duplex = acPRDPVertical
    .PaperBin = acPRBNAuto
    .PaperSize = acPRPSLetter
    .PrintQuality = acPRPQMedium
End With