123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269 |
- Attribute VB_Name = "API"
- '// This is free and unencumbered software released into the public domain.
- '// For more information, please refer to https://github.com/hongwenjun
- '// Attribute VB_Name = "CorelVBA工具窗口启动" CorelVBA Tool Window Launches 2023.6.11
- '// CorelDRAW 窗口刷新优化和关闭
- Public Function BeginOpt(Optional ByVal name As String = "Undo")
- EventsEnabled = False
- ActiveDocument.BeginCommandGroup name
- ' ActiveDocument.SaveSettings
- ActiveDocument.Unit = cdrMillimeter
- Optimization = True
- ' ActiveDocument.PreserveSelection = False
- End Function
- Public Function EndOpt()
- ' ActiveDocument.PreserveSelection = True
- ' ActiveDocument.RestoreSettings
- EventsEnabled = True
- Optimization = False
- EventsEnabled = True
- ActiveDocument.ReferencePoint = cdrBottomLeft
- Application.Refresh
- ActiveDocument.EndCommandGroup
- End Function
- Public Function Speak_Msg(message As String)
- Speak_Help = Val(GetSetting("LYVBA", "Settings", "SpeakHelp", "0")) '// 关停语音功能
-
- If Val(Speak_Help) = 1 Then
- Dim sapi
- Set sapi = CreateObject("sapi.spvoice")
- sapi.Speak message
- Else
- ' 不说话
- End If
- End Function
- Public Function GetSet(s As String)
- Bleed = Val(GetSetting("LYVBA", "Settings", "Bleed", "2.0"))
- Line_len = Val(GetSetting("LYVBA", "Settings", "Line_len", "3.0"))
- Outline_Width = Val(GetSetting("LYVBA", "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 GetLngCode() As Long
- GetLngCode = Val(GetSetting("LYVBA", "Settings", "I18N_LNG", "1033"))
- End Function
- Public Function Create_Tolerance() As Double
- Dim text As String
- If GlobalUserData.Exists("Tolerance", 1) Then
- text = GlobalUserData("Tolerance", 1)
- End If
-
- LNG_CODE = API.GetLngCode
- text = InputBox(i18n("Please enter a tolerance value 0.1 --> 9.9", LNG_CODE), i18n("Tolerance(mm)", LNG_CODE), text)
- If text = "" Then Exit Function
- GlobalUserData("Tolerance", 1) = text
- Create_Tolerance = Val(text)
- End Function
- Public Function Set_Space_Width(Optional ByVal OnlyRead As Boolean = False) As Double
- Dim text As String
- If GlobalUserData.Exists("SpaceWidth", 1) Then
- text = GlobalUserData("SpaceWidth", 1)
- If OnlyRead Then
- Set_Space_Width = Val(text)
- Exit Function
- End If
- End If
- LNG_CODE = API.GetLngCode
- text = InputBox(i18n("Please enter a gap width value -99 --> 99", LNG_CODE), i18n("Set Space Width(mm)", LNG_CODE), 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 Newline_to_Space(ByVal str As String) As String
- str = VBA.Replace(str, Chr(13), " ")
- str = VBA.Replace(str, Chr(9), " ")
- Do While InStr(str, " ")
- str = VBA.Replace(str, " ", " ")
- Loop
- Newline_to_Space = str
- 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
- '// 把一个数组倒序
- Public Function ArrayReverse(arr)
- Dim i As Integer, n As Integer
- n = UBound(arr)
- Dim P(): ReDim P(n)
- For i = 0 To n
- P(i) = arr(n - i)
- Next
- ArrayReverse = P
- End Function
- '// 测试数组排序
- Private Function 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 Function
- '// 两点连线的角度:返回角度(相对于X轴的角度)
- '// p为末点,O为始点
- Public Function alfaPP(P, o)
- Dim pi As Double: pi = 4 * Atn(1)
- Dim beta As Double
- If P(0) = o(0) And P(1) = o(1) Then '二点重合
- alfaPP = 0
- Exit Function
- ElseIf P(0) = o(0) And P(1) > o(1) Then
- beta = pi / 2
- ElseIf P(0) = o(0) And P(1) < o(1) Then
- beta = -pi / 2
- ElseIf P(1) = o(1) And P(0) < o(0) Then
- beta = pi
- ElseIf P(1) = o(1) And P(0) > o(0) Then
- beta = 0
- Else
- beta = Atn((P(1) - o(1)) / VBA.Abs(P(0) - o(0)))
- If P(1) > o(1) And P(0) < o(0) Then
- beta = pi - beta
- ElseIf P(1) < o(1) And P(0) < o(0) Then
- beta = -(pi + beta)
- End If
- End If
- alfaPP = beta * 180 / pi
- End Function
- '// 求过P点到线段AB上的垂足点(XY平面内的二维计算)
- Public Function pFootInXY(P, a, b)
- If a(0) = b(0) Then
- pFootInXY = Array(a(0), P(1), 0#): Exit Function
- End If
- If a(1) = b(1) Then
- pFootInXY = Array(P(0), a(1), 0#): Exit Function
- End If
- Dim aa, bb, c, d, X, Y
- aa = (a(1) - b(1)) / (a(0) - b(0))
- bb = a(1) - aa * a(0)
- c = -(a(0) - b(0)) / (a(1) - b(1))
- d = P(1) - c * P(0)
- X = (d - bb) / (aa - c)
- Y = aa * X + bb
- pFootInXY = Array(X, Y, 0#)
- End Function
- Public 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
- ' ************* 函数模块 ************* '
- Public 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
- Public Function test_sapi()
- Dim message, sapi
- MsgBox ("Please use the headset and listen to what I have to say...")
- message = "This is a simple voice test on your Microsoft Windows."
- Set sapi = CreateObject("sapi.spvoice")
- sapi.Speak message
- End Function
- ' Public Function WebHelp(url As String)
- ' Dim h As Longer, r As Long
- ' h = FindWindow(vbNullString, "Toolbar")
- ' r = ShellExecute(h, "", url, "", "", 1)
- ' End Function
|