1
1

SmartGroup.bas 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. Attribute VB_Name = "SmartGroup"
  2. '// This is free and unencumbered software released into the public domain.
  3. '// For more information, please refer to https://github.com/hongwenjun
  4. '// Attribute VB_Name = "智能群组" SmartGroup 2023.6.30
  5. Public Function Smart_Group(Optional ByVal tr As Double = 0) As ShapeRange
  6. If 0 = ActiveSelectionRange.Count Then Exit Function
  7. On Error GoTo ErrorHandler
  8. API.BeginOpt
  9. Dim OrigSelection As ShapeRange, sr As New ShapeRange
  10. Dim s1 As Shape, sh As Shape, s As Shape
  11. Dim x As Double, Y As Double, w As Double, h As Double
  12. Dim eff1 As Effect
  13. Set OrigSelection = ActiveSelectionRange
  14. '// 遍历物件画矩形
  15. For Each sh In OrigSelection
  16. sh.GetBoundingBox x, Y, w, h
  17. If w * h > 4 Then
  18. Set s = ActiveLayer.CreateRectangle2(x - tr, Y - tr, w + 2 * tr, h + 2 * tr)
  19. sr.Add s
  20. '// 轴线 创建轮廓处理
  21. ElseIf w * h < 0.3 Then
  22. ' Debug.Print w * h
  23. Set eff1 = sh.CreateContour(cdrContourOutside, 0.5, 1, cdrDirectFountainFillBlend, CreateRGBColor(26, 22, 35), _
  24. CreateRGBColor(26, 22, 35), CreateRGBColor(26, 22, 35), 0, 0, cdrContourSquareCap, cdrContourCornerMiteredOffsetBevel, 15#)
  25. eff1.Separate
  26. End If
  27. Next sh
  28. '// 查找轴线轮廓
  29. sr.AddRange ActivePage.Shapes.FindShapes(Query:="@Outline.Color=RGB(26, 22, 35)")
  30. sr.AddRange ActivePage.Shapes.FindShapes(Query:="@fill.Color=RGB(26, 22, 35)")
  31. '// 新矩形寻找边界,散开,删除刚才画的新矩形
  32. Set s1 = sr.CustomCommand("Boundary", "CreateBoundary")
  33. Set brk1 = s1.BreakApartEx
  34. sr.Delete
  35. '// 矩形边界智能群组, RetSR 返回群组 和 删除矩形s
  36. Dim RetSR As New ShapeRange
  37. For Each s In brk1
  38. Set OrigSelection = ActivePage.SelectShapesFromRectangle(s.LeftX, s.TopY, s.RightX, s.BottomY, False).Shapes.all
  39. s.Delete
  40. If OrigSelection.Count > 2 Then RetSR.Add OrigSelection.Group
  41. Next s
  42. '// 智能群组返回和选择
  43. Set Smart_Group = RetSR
  44. RetSR.CreateSelection
  45. ErrorHandler:
  46. API.EndOpt
  47. End Function
  48. '// 智能群组 原理版
  49. Private Function Smart_Group_ABC()
  50. ActiveDocument.Unit = cdrMillimeter
  51. Dim OrigSelection As ShapeRange, brk1 As ShapeRange
  52. Set OrigSelection = ActiveSelectionRange
  53. Dim s1 As Shape, sh As Shape, s As Shape
  54. Set s1 = OrigSelection.CustomCommand("Boundary", "CreateBoundary")
  55. Set brk1 = s1.BreakApartEx
  56. For Each s In brk1
  57. If s.SizeHeight > 10 Then
  58. Set sh = ActivePage.SelectShapesFromRectangle(s.LeftX, s.TopY, s.RightX, s.BottomY, False)
  59. sh.Shapes.all.Group
  60. End If
  61. s.Delete
  62. Next
  63. End Function