API.bas 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. Attribute VB_Name = "API"
  2. Public Function GetSet(s As String)
  3. Bleed = Val(GetSetting("262235.xyz", "Settings", "Bleed", "2.0"))
  4. Line_len = Val(GetSetting("262235.xyz", "Settings", "Line_len", "3.0"))
  5. Outline_Width = Val(GetSetting("262235.xyz", "Settings", "Outline_Width", "0.2"))
  6. ' Debug.Print Bleed, Line_len, Outline_Width
  7. If s = "Bleed" Then
  8. GetSet = Bleed
  9. ElseIf s = "Line_len" Then
  10. GetSet = Line_len
  11. ElseIf s = "Outline_Width" Then
  12. GetSet = Outline_Width
  13. End If
  14. End Function
  15. '// 获得剪贴板文本字符
  16. Public Function GetClipBoardString() As String
  17. On Error Resume Next
  18. Dim MyData As New DataObject
  19. GetClipBoardString = ""
  20. MyData.GetFromClipboard
  21. GetClipBoardString = MyData.GetText
  22. Set MyData = Nothing
  23. End Function
  24. '// 文本字符复制到剪贴板
  25. Public Function WriteClipBoard(s As String)
  26. On Error Resume Next
  27. Dim MyData As New DataObject
  28. MyData.SetText s
  29. MyData.PutInClipboard
  30. End Function
  31. '// 获得数组元素个数
  32. Public Function arrlen(src As Variant) As Integer
  33. On Error Resume Next '空意味着 0 长度
  34. arrlen = (UBound(src) - LBound(src))
  35. End Function
  36. '// 对数组进行排序[单维]
  37. Public Function ArraySort(src As Variant) As Variant
  38. Dim out As Long, i As Long, tmp As Variant
  39. For out = LBound(src) To UBound(src) - 1
  40. For i = out + 1 To UBound(src)
  41. If src(out) > src(i) Then
  42. tmp = src(i): src(i) = src(out): src(out) = tmp
  43. End If
  44. Next i
  45. Next out
  46. ArraySort = src
  47. End Function
  48. '// 测试数组排序
  49. Private test_ArraySort()
  50. Dim arr As Variant, i As Integer
  51. arr = Array(5, 4, 3, 2, 1, 9, 999, 33)
  52. For i = 0 To arrlen(arr) - 1
  53. Debug.Print arr(i);
  54. Next i
  55. Debug.Print arrlen(arr)
  56. ArraySort arr
  57. For i = 0 To arrlen(arr) - 1
  58. Debug.Print arr(i);
  59. Next i
  60. End Sub
  61. Function FindAllShapes() As ShapeRange
  62. Dim s As Shape
  63. Dim srPowerClipped As New ShapeRange
  64. Dim sr As ShapeRange, srAll As New ShapeRange
  65. If ActiveSelection.Shapes.Count > 0 Then
  66. Set sr = ActiveSelection.Shapes.FindShapes()
  67. Else
  68. Set sr = ActivePage.Shapes.FindShapes()
  69. End If
  70. Do
  71. For Each s In sr.Shapes.FindShapes(Query:="[email protected]")
  72. srPowerClipped.AddRange s.PowerClip.Shapes.FindShapes()
  73. Next s
  74. srAll.AddRange sr
  75. sr.RemoveAll
  76. sr.AddRange srPowerClipped
  77. srPowerClipped.RemoveAll
  78. Loop Until sr.Count = 0
  79. Set FindAllShapes = srAll
  80. End Function