选区字体Size、Bold、Italic与Underline:
Sub Operate_Font()
'
' Size、Bold、Italic and Underline
'
Selection.Font.Bold = True
Selection.Font.Italic = True
Selection.Font.Underline = True
Selection.Font.Size = 12
Selection.Font.Size = 14
Selection.Font.Size = 16
End Sub
选区复制:
Selection.Copy
选区清空内容:
Selection.ClearContents
————————————————
版权声明:本文为CSDN博主「Kuoa」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_42292831/article/details/102783711