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

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/10994109/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-08 13:18:40  来源:igfitidea点击:

VBA set spreadsheet font size and row size?

excelvba

提问by mezamorphic

Is there a convenient way of setting the worksheet's font size and row height from VBA?

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

回答by Alex P

This ought to work:

这应该有效:

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