求救delphi+word ( 积分: 100 )

  • 主题发起人 主题发起人 yzssg
  • 开始时间 开始时间
Y

yzssg

Unregistered / Unconfirmed
GUEST, unregistred user!
在DELPHI中处理word时如何设置页面啊
With ActiveDocument.PageSetup
.LineNumbering.Active = False
.Orientation = wdOrientPortrait
.TopMargin = CentimetersToPoints(2.2)
.BottomMargin = CentimetersToPoints(1)
.LeftMargin = CentimetersToPoints(3)
.RightMargin = CentimetersToPoints(2.81)
.Gutter = CentimetersToPoints(0)
.HeaderDistance = CentimetersToPoints(0)
.FooterDistance = CentimetersToPoints(0)
.PageWidth = CentimetersToPoints(19)
.PageHeight = CentimetersToPoints(12.7)
.FirstPageTray = wdPrinterDefaultBin
.OtherPagesTray = wdPrinterDefaultBin
.SectionStart = wdSectionNewPage
.OddAndEvenPagesHeaderFooter = False
.DifferentFirstPageHeaderFooter = False
.VerticalAlignment = wdAlignVerticalTop
.SuppressEndnotes = False
.MirrorMargins = False
.TwoPagesOnOne = False
.BookFoldPrinting = False
.BookFoldRevPrinting = False
.BookFoldPrintingSheets = 1
.GutterPos = wdGutterPosLeft
.LayoutMode = wdLayoutModeLineGrid
End With
如何转化为delphi的代码

wordApp.ActiveDocument.PageSetup.PageWidth 的单位是什么啊如何输入厘米
 
在DELPHI中处理word时如何设置页面啊
With ActiveDocument.PageSetup
.LineNumbering.Active = False
.Orientation = wdOrientPortrait
.TopMargin = CentimetersToPoints(2.2)
.BottomMargin = CentimetersToPoints(1)
.LeftMargin = CentimetersToPoints(3)
.RightMargin = CentimetersToPoints(2.81)
.Gutter = CentimetersToPoints(0)
.HeaderDistance = CentimetersToPoints(0)
.FooterDistance = CentimetersToPoints(0)
.PageWidth = CentimetersToPoints(19)
.PageHeight = CentimetersToPoints(12.7)
.FirstPageTray = wdPrinterDefaultBin
.OtherPagesTray = wdPrinterDefaultBin
.SectionStart = wdSectionNewPage
.OddAndEvenPagesHeaderFooter = False
.DifferentFirstPageHeaderFooter = False
.VerticalAlignment = wdAlignVerticalTop
.SuppressEndnotes = False
.MirrorMargins = False
.TwoPagesOnOne = False
.BookFoldPrinting = False
.BookFoldRevPrinting = False
.BookFoldPrintingSheets = 1
.GutterPos = wdGutterPosLeft
.LayoutMode = wdLayoutModeLineGrid
End With
如何转化为delphi的代码

wordApp.ActiveDocument.PageSetup.PageWidth 的单位是什么啊如何输入厘米
 
建议看一下 Demos
在 ./Borland/Delphi7/Demos 下
 
后退
顶部