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

时间:2012-06-12 09:45:13

标签: excel vba

是否有方便的方法从VBA设置工作表的字体大小和行高?

1 个答案:

答案 0 :(得分:9)

这应该有效:

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