给你一个子程序 给出了三个条件,1、将光标处的行高设置为60 2、设置字体为楷体 3、经字体加粗
Sub Macro1()
'
Selection.RowHeight = 60 '设置行高
With Selection.Font
.Name = "楷体_GB2312" '设置字体
.Size = 12
End With
Selection.Font.Bold = True '将字体加粗
End Sub
把你的操作录制一个宏,然后分析代码。你就什么都知道了。