ColumnSpacing 屬性

此頁沒有內(nèi)容條目
內(nèi)容

返回或設(shè)置一個 Long 值,代表主體節(jié)之間以緹為單位的垂直間隔。可讀寫。

expression.ColumnSpacing

expression     必需。返回“應(yīng)用于”列表中的一個對象的表達式。

示例

下面的示例為過程的 strFormname 參數(shù)中指定的窗體設(shè)置各種打印機設(shè)置。

Sub SetPrinter(strFormname As String)

    DoCmd.OpenForm FormName:=strFormname, view:=acDesign, _

                   datamode:=acFormEdit, windowmode:=acHidden

    With Forms(form1).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

    DoCmd.Close objecttype:=acForm, objectname:=strFormname, _

                Save:=acSaveYes

End Sub