CorelDRAW_VBA编程手册_学习笔记.bas 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  1. ' 在 CorelDRAW 中,Application 对象是所有其他对象的根对象。要从进程外控制器引用 CorelDRAW 对象模型,请使用其 Application 对象。
  2. ' 尽管您可以在 VBA 中使用上述代码,但 CorelDRAW 不需要,因为如果未指定其他根对象,则默认使用 Application 对象。
  3. Dim cdr As CorelDRAW.Application
  4. Set cdr = CreateObject("corelDRAW.Application.14")
  5. ' Document 对象。它还包含所有 Window 对象。有关详细信息,请参阅第 57 页上的“处理文档”。
  6. ' Document 对象包含其所有 Page 对象的 Pages 集合。有关详细信息,请参阅第 67 页的“使用页面”。
  7. ' 单个页面对象包含所有图层对象的图层集合。有关详细信息,请参阅第 71 页上的“使用图层”。
  8. ' 最后,Layer 对象包含其所有 Shape 对象的 Shapes 集合。有关详细信息,请参阅第 73 页的“使用形状”。
  9. ' 要查看 CorelDRAW 对象模型的图表 CorelDRAW VBA Object Model.pdf
  10. MsgBox "文件名:" & cdr.ActiveDocument.FileName & "目录:" & cdr.ActiveDocument.FilePath
  11. MsgBox "目录和文件名:" & cdr.ActiveDocument.FullFileName
  12. ' 每当打开 CorelDRAW 文件时,都会在该文档的 Application 对象中创建一个新的 Document 对象。
  13. Document Member ' 描述
  14. Activate ' 激活给定文档 - 将其带到 CorelDRAW 中的最前面。 ActiveDocument 设置为引用它。
  15. ActiveLayer ' 表示在对象管理器中设置为活动的层
  16. ActivePage ' 表示文档中的活动页面,即在 CorelDRAW 中编辑的当前页面
  17. AddPages AddPagesEx ' 在文档末尾添加页面
  18. BeginCommandGroup EndCommandGroup ' 创建一个“命令组”,即在撤消列表中显示为单个项目的一系列操作
  19. ClearSelection ' 清除文档的选择以取消选择文档中的所有形状
  20. Close ' 关闭文档
  21. Export ' 从文档执行简单导出
  22. ExportEx ' 从文档执行高度可配置的导出
  23. ExportBitmap ' 导出到具有完全控制权的位图
  24. FileName ' 获取文件名
  25. FilePath ' 获取文件的路径
  26. FullFileName ' 获取文档的完整路径和文件名
  27. GetUserArea ' 允许您通过允许用户拖动区域来为宏添加交互性
  28. GetUserClick ' 允许您通过允许用户单击来向宏添加交互性
  29. InsertPages InsertPagesEx ' 将页面插入到文档中的指定位置
  30. Pages ' 提供对 Pages 集合的访问
  31. Printout PrintSettings ' 使用文档的打印设置打印文档
  32. PublishToPDF PDFSettings ' 将文档发布为 Adobe Acrobat Reader (PDF) 格式
  33. ReferencePoint ' 获取/设置许多 Shape 函数使用的参考点(例如用于转换形状或获取形状位置的函数)
  34. Save ' 使用当前文件名保存文档
  35. SaveAs ' 将文档保存为新文件名或使用新设置
  36. Selection ' 将选择作为形状获取
  37. SelectionRange ' 将选择作为 ShapeRange 获取
  38. Unit ' 设置获取测量值的函数使用的文档单位,例如与大小和位置相关的函数。 这与标尺设置使用的单位无关。
  39. Worldscale ' 还获取/设置绘图比例。 这会改变文档中的值; 但是,它必须明确地计算到采用测量值的函数中,默认情况下使用 1:1。
  40. ' 建立新文档,导入CDR文件,另存cdr,默认保存在软件目录
  41. Dim d As Document
  42. Set d = CreateDocument
  43. d.ActiveLayer.Import "R:\CDX4JX\ColorMark.cdr"
  44. d.SaveAs "学习VBA新文档.cdr"
  45. ' 获得文件名,关闭文件
  46. MsgBox d.FileName & " 目录: " & d.FilePath
  47. f = d.FullFileName
  48. d.Close
  49. ' 打开文件CDR文件,导出图片和EPS
  50. Dim doc As Document
  51. Set doc = OpenDocument(f)
  52. ActiveDocument.Export "R:\学习VBA新文档.jpg", cdrJPEG
  53. ActiveDocument.Export "R:\学习VBA新文档.eps", cdrEPS
  54. ' 调整页面大小并设置其方向
  55. ActiveDocument.Unit = cdrMillimeter
  56. ActivePage.SetSize 210, 297
  57. ActivePage.Orientation = cdrLandscape
  58. ' 要设置文档的默认页面大小,请设置文档的 Pages 集合中索引为 0 的项目的值:
  59. Dim doc As Document
  60. Set doc = ActiveDocument
  61. doc.Unit = cdrMillimeter
  62. doc.Pages(0).SetSize 297, 210
  63. ' doc.MasterPage.SetSize 297, 210 ' 或以使用 Document 对象的快捷方式属性 MasterPage
  64. ' 删除页面
  65. ActivePage.Delete
  66. If ActiveDocument.Pages.Count > 1 Then ActivePage.Delete
  67. ' 建立图层
  68. ActivePage.CreateLayer "刀模线图层"
  69. ' 激活图层
  70. ActivePage.Layers("刀模线图层").Activate
  71. ' 锁定隐藏图层
  72. ActivePage.Layers("刀模线图层").Visible = True
  73. ActivePage.Layers("刀模线图层").Editable = False
  74. ' 创建形状 Creating shapes
  75. 形状对象表示您使用绘图工具在 CorelDRAW 文档中创建的形状。您可以创建的形状包括矩形、椭圆、曲线和文本对象。
  76. 因为每个 Shape 对象都是 Shapes 集合的成员,它是 Page 上的其中一个 Layer 对象的成员,所以用于创建新形状的方法属于 Layer 类,它们都以单词 Create 开头。
  77. ' 创建矩形 Creating rectangles
  78. ' 有两个函数用于创建新的矩形形状 - CreateRectangle 和 CreateRectangle2 - 这两个函数都返回对新 Shape 对象的引用。这两个函数的不同之处仅在于它们采用的参数。
  79. ' 例如,以下代码使用 CreateRectangle 创建一个简单的 2×1 英寸矩形(文档有误实际3x2),该矩形位于页面底部上方 6 英寸和页面左侧 3 英寸处:
  80. Dim sh As Shape
  81. ActiveDocument.Unit = cdrInch
  82. Set sh = ActiveLayer.CreateRectangle(3, 7, 6, 5)
  83. ' 参数以左、上、右、下的形式给出,它们以文档的单位进行测量(可以在创建形状之前明确设置)。
  84. ' 另一种方法 CreateRectangle2 通过指定矩形左下角的坐标及其宽度和高度来创建矩形。以下代码创建与上面相同的矩形:
  85. Dim sh As Shape
  86. ActiveDocument.Unit = cdrInch
  87. Set sh = ActiveLayer.CreateRectangle2(3, 6, 2, 1)
  88. ' 提供了替代方法以简化开发解决方案;他们提供相同的功能。
  89. ' 圆角矩形也可以使用 CreateRectangle 和 CreateRectangle2 方法创建。这两个函数都有四个可选参数,用于在创建矩形时设置角的圆度,但这些值对于两个函数的含义略有不同。
  90. ' CreateRectangle 方法的四个可选参数采用 C 到 100 范围内的整数值(默认值为 0)。
  91. ' 这些值将四个角的半径定义为最短边长一半的整数百分比。以下代码重新创建了之前的 2×1 英寸矩形(文档有误实际3x2),
  92. ' 但四个角半径设置为最短边一半的 100%、75%、50% 和 0%;换句话说,半径将是 0.5 英寸、0.375 英寸、0.25 英寸和一个尖角:
  93. Dim sh As Shape
  94. ActiveDocument.Unit = cdrInch
  95. Set sh = ActiveLayer.CreateRectangle(3, 7, 6, 5, 100, 75, 50 ,0)
  96. Set sh = ActiveLayer.CreateRectangle2(3, 7, 6, 5, 1, 1.5, 2, 0)
  97. ' CreateRectangle2 方法以相同的顺序定义角半径,除了它采用双(浮点)值,即文档单位中的半径测量值。
  98. ' 创建椭圆 Creating ellipses
  99. ' 创建椭圆有两种方法:CreateEllipse 和 CreateEllipse2。 它们的参数不同,因此您可以根据其边界框或根据其中心点和半径创建椭圆。 这两个函数还创建弧线或部分椭圆,或线段或饼图。
  100. ' CreateEllipse 方法采用与 CreateRectangle 相同的方式定义其边界框的四个参数——换句话说,以文档的单位为左、上、右、下。 以下代码创建一个 50 毫米的圆:
  101. Dim sh As Shape
  102. ActiveDocument.Unit = cdrMillimeter
  103. Set sh = ActiveLayer.CreateEllipse(75, 150, 125, 100)
  104. ' CreateEllipse2 方法基于椭圆的中心点以及水平和垂直半径创建椭圆。 (如果只给定一个半径,则创建一个圆。)以下代码创建与上述代码相同的 50 毫米圆:
  105. Dim sh As Shape
  106. ActiveDocument.Unit = cdrMillimeter
  107. Set sh = ActiveLayer.CreateEllipse2(100, 125, 25)
  108. ' 要创建椭圆,请提供第二个半径。 (第一个半径是水平半径,第二个是垂直半径。)
  109. Set sh = ActiveLayer.CreateEllipse2(100, 125, 50, 25)
  110. ' 创建曲线 Creating curves
  111. ' 曲线由其他几个对象组成:每个 Curve 有一个或多个 SubPath 成员对象,每个 SubPath 有一个或多个 Segment 对象,
  112. ' 每个 Segment 有两个 Node 对象以及两个控制点位置/角度属性。
  113. ' 您可以使用 CreateCurve 方法或 Application 对象在 CorelDRAW 中创建曲线对象。
  114. ' 使用 CreateSubPath 成员函数在 Curve 对象内创建一个新的 SubPath。这将创建曲线的第一个节点。
  115. ' 接下来,使用 AppendLineSegment 和 AppendCurveSegment 成员函数将新的线型或曲线型段附加到子路径。
  116. ' 这将添加另一个节点并设置该段的控制手柄的位置。根据需要重复此操作以构建 Lip the Curve。
  117. ' 使用 CreateCurve 成员函数在 Layer 上创建曲线形状。
  118. ' 您可以向曲线添加额外的子路径,并使用它们自己的节点构建这些嘴唇。您还可以通过将曲线的 Closed 属性设置为 True 来关闭曲线。
  119. ' 以下代码创建了一条 D 形闭合曲线:
  120. Dim sh As Shape, spath As SubPath, crv As Curve
  121. ActiveDocument.Unit = cdrCentimeter
  122. Set crv = Application.CreateCurve(ActiveDocument) ' 创建曲线对象
  123. Set spath = crv.CreateSubPath(6, 6) ' 创建一个子路径
  124. spath.AppendLineSegment 6, 3 ' 添加短垂直线段
  125. spath.AppendCurveSegment 3, 0, 2, 270, 2, 0 ' 下曲线
  126. spath.AppendLineSegment 0, 0 ' 底部直边
  127. spath.AppendLineSegment 0, 9 ' 左直边
  128. spath.AppendLineSegment 3, 9 ' 顶部直边
  129. spath.AppendCurveSegment 6, 6, 2, 0, 2, 90 ' 上曲线
  130. spath.Closed = True ' 关闭曲线
  131. Set sh = ActiveLayer.CreateCurve(crv) ' 创建曲线形状
  132. ' 创建文本对象 Creating text objects
  133. ' 文本对象是另一种类型的 Shape 对象。但是,处理文本比处理其他形状更复杂。
  134. Dim sh As Shape
  135. Set sh = ActiveLayer.CreateArtisticText(0, 0, "Hello World")
  136. ' 选择形状 Selecting shapes
  137. ' 要确定一个 Shape 是否被选中,你可以测试它的 Selected Boolean 属性:
  138. Dim sh As Shape
  139. Set sh = ActivePage.Shapes(1)
  140. If sh.Selected = False Then sh.CreateSelection
  141. ' 您只需将其 Selected 属性设置为 True 即可将 Shape 添加到选择中;'这将选择形状而不取消选择所有其他形状。
  142. ActivePage.Shapes(3).Selected = True
  143. ' 若要仅选择一个形状而不选择任何其他形状,请使用 CreateSelection 方法,如前面的代码中所示。
  144. ' 要取消选择所有形状,请调用文档的 ClearSelection 方法:
  145. ActiveDocument.ClearSelection
  146. ' 要选择页面或图层上的所有形状,请使用以下代码:
  147. ActivePage.Shapes.All.CreateSelection
  148. ' 引用 ActiveSelection 对象
  149. Dim sel As Shape
  150. Set sel = ActiveDocument.Selection
  151. MsgBox "选择物件尺寸: " & sel.SizeWidth & "x" & sel.SizeHeight
  152. ' 选择遍历多个物件对象
  153. Dim sh As Shape, shs As Shapes
  154. Set shs = ActiveSelection.Shapes
  155. For Each sh In shs
  156. MsgBox "选择物件尺寸: " & sh.SizeWidth & "x" & sh.SizeHeight
  157. Next sh
  158. ' 实践应用: 选择物件群组,页面设置物件大小,物件页面居中
  159. ActiveDocument.Unit = cdrMillimeter
  160. Dim OrigSelection As ShapeRange, sh As Shape
  161. Set OrigSelection = ActiveSelectionRange
  162. Set sh = OrigSelection.Group
  163. MsgBox "选择物件尺寸: " & sh.SizeWidth & "x" & sh.SizeHeight
  164. ActivePage.SetSize Int(sh.SizeWidth + 0.9), Int(sh.SizeHeight + 0.9)
  165. sh.AlignToPageCenter cdrAlignHCenter + cdrAlignVCenter
  166. ' cdrAlignType 枚举具有以下常量:
  167. cdrAlignLeft 1 指定左对齐
  168. cdrAlignRight 2 指定右对齐
  169. cdrAlignHCenter 3 指定水平居中对齐
  170. cdrAlignTop 4 指定顶部对齐
  171. cdrAlignBottom 8 指定底部对齐
  172. cdrAlignVCenter 12 指定垂直居中对齐
  173. ' 添加页面框线
  174. Dim s1 As Shape
  175. Set s1 = ActiveLayer.CreateRectangle2(0, 0, 210, 297)
  176. s1.Fill.ApplyNoFill
  177. s1.OrderToFront
  178. s1.OrderToBack
  179. s1.Outline.SetProperties 0.04, Color:=CreateCMYKColor(0, 100, 0, 0)
  180. s1.Move 100, 0#
  181. s1.Move 0#, -61.8
  182. Dim posX As Double, posY As Double
  183. ActiveDocument.ReferencePoint = cdrBottomLeft
  184. s1.GetPosition posX, posY
  185. MsgBox "左下坐标: " & posX & ", " & posY
  186. ' 以下代码将活动文档中每个选定形状的右下角位置设置为 (3, 2),以英寸为单位:
  187. Dim sh As Shape
  188. ActiveDocument.Unit = cdrInch
  189. ActiveDocument.ReferencePoint = cdrBottomRight
  190. For Each sh In ActiveSelection.Shapes
  191. sh.SetPosition 3, 2
  192. Next sh
  193. ' 在页面四边放置中线
  194. Dim sh As Shape
  195. Set sh = ActiveDocument.Selection
  196. sh.AlignToPage cdrAlignHCenter + cdrAlignTop
  197. sh.Duplicate 0, 0
  198. sh.Rotate 180
  199. sh.AlignToPage cdrAlignHCenter + cdrAlignBottom
  200. sh.Duplicate 0, 0
  201. sh.Rotate 90
  202. sh.AlignToPage cdrAlignVCenter + cdrAlignRight
  203. sh.Duplicate 0, 0
  204. sh.Rotate 180
  205. sh.AlignToPage cdrAlignVCenter + cdrAlignLeft
  206. ' 在页面四角放置套准标记线
  207. Dim sh As Shape
  208. Set sh = ActiveDocument.Selection
  209. sh.AlignToPage cdrAlignLeft + cdrAlignTop
  210. sh.Duplicate 0, 0
  211. sh.Rotate 180
  212. sh.AlignToPage cdrAlignRight + cdrAlignBottom
  213. sh.Duplicate 0, 0
  214. sh.Flip cdrFlipHorizontal ' 物件镜像
  215. sh.AlignToPage cdrAlignLeft + cdrAlignBottom
  216. sh.Duplicate 0, 0
  217. sh.Rotate 180
  218. sh.AlignToPage cdrAlignRight + cdrAlignTop
  219. '// 获得选择物件大小信息
  220. Sub get_all_size()
  221. ActiveDocument.Unit = cdrMillimeter
  222. Set fs = CreateObject("Scripting.FileSystemObject")
  223. Set f = fs.CreateTextFile("R:\size.txt", True)
  224. Dim sh As Shape, shs As Shapes
  225. Set shs = ActiveSelection.Shapes
  226. Dim s As String
  227. For Each sh In shs
  228. size = Trim(Str(Int(sh.SizeWidth + 0.5))) + "x" + Trim(Str(Int(sh.SizeHeight + 0.5))) + "mm"
  229. f.WriteLine (size)
  230. s = s + size + vbNewLine
  231. Next sh
  232. f.Close
  233. MsgBox "输出物件尺寸信息到文件" & "R:\size.txt" & vbNewLine & s
  234. WriteClipBoard s
  235. End Sub
  236. Private Function WriteClipBoard(s As String)
  237. On Error Resume Next
  238. Dim MyData As New DataObject
  239. MyData.SetText s
  240. MyData.PutInClipboard
  241. End Function
  242. ' GetSetting 函数
  243. ' 从 Windows 注册表中 或 (Macintosh中)应用程序初始化文件中的信息的应用程序项目返回注册表项设置值。
  244. Sub 加ID()
  245. ActiveDocument.Unit = cdrMillimeter
  246. Dim n As String
  247. Dim s1 As Shape
  248. Dim s As Shape
  249. Set s = ActiveShape
  250. If s Is Nothing Then
  251. MsgBox "请选择一个图形"
  252. Exit Sub
  253. End If
  254. n = vba.GetSetting("addID", "nm", "id")
  255. If n = "" Then
  256. n = "1"
  257. vba.SaveSetting "addID", "nm", "id", "1"
  258. Else
  259. n = CStr(Val(vba.GetSetting("addID", "nm", "id")) + 1)
  260. vba.SaveSetting "addid", "nm", "id", n
  261. End If
  262. Set s1 = ActiveLayer.CreateArtisticText(0, 0, "ID " & n, , , , 30)
  263. s1.CenterX = s.CenterX
  264. s1.CenterY = s.CenterY
  265. End Sub
  266. '// 查找文本选择
  267. Sub find_id()
  268. Find_Text "ID"
  269. End Sub
  270. Public Function Find_Text(s_s As String)
  271. Dim s As Shape
  272. For Each s In ActivePage.FindShapes(, cdrTextShape)
  273. ' 这里添加 文字判断
  274. If s.Text.Type = cdrArtisticText And InStr(s.Text.Story, s_s) <> 0 Then
  275. ' s.Text.Story = "找到 ID"
  276. s.AddToSelection
  277. End If
  278. Next s
  279. End Function
  280. '// 屏幕分辨率
  281. Public SystemX As Long
  282. Public SystemY As Long
  283. Private Declare Function GetSystemMetrics Lib "user32" (ByVal nIndex As Long) As Long
  284. Public Function filePath()
  285. filePath = Application.Path & "GMS"
  286. End Function
  287. Function GetSysM(SystemX As Long, SystemY As Long)
  288. Dim XVal As Long, YVal As Long
  289. SystemX = GetSystemMetrics(0)
  290. SystemY = GetSystemMetrics(1)
  291. GetSysM = SystemX & "#" & SystemY
  292. End Function