123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- Attribute VB_Name = "API"
- Public Function GetSet(s As String)
- Bleed = Val(GetSetting("262235.xyz", "Settings", "Bleed", "2.0"))
- Line_len = Val(GetSetting("262235.xyz", "Settings", "Line_len", "3.0"))
- Outline_Width = Val(GetSetting("262235.xyz", "Settings", "Outline_Width", "0.2"))
- ' Debug.Print Bleed, Line_len, Outline_Width
- If s = "Bleed" Then
- GetSet = Bleed
- ElseIf s = "Line_len" Then
- GetSet = Line_len
- ElseIf s = "Outline_Width" Then
- GetSet = Outline_Width
- End If
-
- End Function
- Public Function Create_Tolerance()
- Dim text As String
- If GlobalUserData.Exists("Tolerance", 1) Then
- text = GlobalUserData("Tolerance", 1)
- End If
- text = InputBox("请输入容差值 0.1 --> 9.9", "容差值(mm)", text)
- If text = "" Then Exit Function
- GlobalUserData("Tolerance", 1) = text
- End Function
- Public Function Set_Space_Width() As Double
- Dim text As String
- If GlobalUserData.Exists("SpaceWidth", 1) Then
- text = GlobalUserData("SpaceWidth", 1)
- End If
- text = InputBox("请输入间隔宽度值 0 --> 99", "设置间隔宽度(mm)", text)
- If text = "" Then Exit Function
- GlobalUserData("SpaceWidth", 1) = text
- Set_Space_Width = Val(text)
- End Function
- '// 获得剪贴板文本字符
- Public Function GetClipBoardString() As String
- On Error Resume Next
- Dim MyData As New DataObject
- GetClipBoardString = ""
- MyData.GetFromClipboard
- GetClipBoardString = MyData.GetText
- Set MyData = Nothing
- End Function
- '// 文本字符复制到剪贴板
- Public Function WriteClipBoard(ByVal s As String)
- On Error Resume Next
- ' VBA_WIN10(vba7) 使用PutInClipboard乱码解决办法
- #If VBA7 Then
- With CreateObject("Forms.TextBox.1")
- .MultiLine = True
- .text = s
- .SelStart = 0
- .SelLength = .TextLength
- .Copy
- End With
- #Else
- Dim MyData As New DataObject
- MyData.SetText s
- MyData.PutInClipboard
- #End If
- End Function
- '// 获得数组元素个数
- Public Function arrlen(src As Variant) As Integer
- On Error Resume Next '空意味着 0 长度
- arrlen = (UBound(src) - LBound(src))
- End Function
- '// 对数组进行排序[单维]
- Public Function ArraySort(src As Variant) As Variant
- Dim out As Long, i As Long, tmp As Variant
- For out = LBound(src) To UBound(src) - 1
- For i = out + 1 To UBound(src)
- If src(out) > src(i) Then
- tmp = src(i): src(i) = src(out): src(out) = tmp
- End If
- Next i
- Next out
-
- ArraySort = src
- End Function
- '// 测试数组排序
- Private test_ArraySort()
- Dim arr As Variant, i As Integer
- arr = Array(5, 4, 3, 2, 1, 9, 999, 33)
- For i = 0 To arrlen(arr) - 1
- Debug.Print arr(i);
- Next i
- Debug.Print arrlen(arr)
- ArraySort arr
- For i = 0 To arrlen(arr) - 1
- Debug.Print arr(i);
- Next i
- End Sub
- Function FindAllShapes() As ShapeRange
- Dim s As Shape
- Dim srPowerClipped As New ShapeRange
- Dim sr As ShapeRange, srAll As New ShapeRange
-
- If ActiveSelection.Shapes.Count > 0 Then
- Set sr = ActiveSelection.Shapes.FindShapes()
- Else
- Set sr = ActivePage.Shapes.FindShapes()
- End If
-
- Do
- For Each s In sr.Shapes.FindShapes(Query:="[email protected]")
- srPowerClipped.AddRange s.PowerClip.Shapes.FindShapes()
- Next s
- srAll.AddRange sr
- sr.RemoveAll
- sr.AddRange srPowerClipped
- srPowerClipped.RemoveAll
- Loop Until sr.Count = 0
-
- Set FindAllShapes = srAll
- End Function
- ' ************* 函数模块 ************* '
- Function ExistsFile_UseFso(ByVal strPath As String) As Boolean
- Dim fso
- Set fso = CreateObject("Scripting.FileSystemObject")
- ExistsFile_UseFso = fso.FileExists(strPath)
- Set fso = Nothing
- End Function
|