VBA设置电子表格的字体大小和行大小?

有没有一种方便的方法来设置工作表的字体大小和行高从VBA?

这应该工作:

Sub SetFormat() With ActiveSheet .Cells.Font.Size = "12" .Cells.RowHeight = 25.5 End With End Sub