生成一段VBA代码,把CorelDRAW x8版本中的页面大小调整到8000mm*8000mm
时间: 2023-03-14 12:24:09 浏览: 136
VBA编制说明
Sub adjustPageSize()
Dim pageWidth as Long
Dim PageHeight as Long
pageWidth = 8000
PageHeight = 8000'获取当前文档
Dim currentDoc as Document
Set currentDoc = CorelDRAW.ActiveDocument'调整页面大小
currentDoc.SetSize pageWidth, pageHeightEnd Sub
阅读全文