Word 宏VBA对两个文本段排序

180it 2019-09-25 PM 2078℃ 0条

Word VBA对两个文本段排序

Sub SortText2()

' A macro to sort the Selection if the user has selected more than one
' paragraph of text.
    If Selection.Paragraphs.Count > 1 Then
        Selection.Sort
    End If

End Sub

支付宝打赏支付宝打赏 微信打赏微信打赏

如果文章或资源对您有帮助,欢迎打赏作者。一路走来,感谢有您!

标签: none

Word 宏VBA对两个文本段排序