ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 610|回复: 1

在表格里面用vba代码设置字体,无效

[复制链接]

TA的精华主题

TA的得分主题

发表于 2021-10-25 09:41 | 显示全部楼层 |阅读模式
Sub AllTableBorders(control As IRibbonControl) '批量调整表格格式
    Application.ScreenUpdating = False  '关闭屏幕刷新
    Application.DisplayAlerts = False  '关闭提示
    On Error Resume Next  '忽略错误
    '-------------------------------------------------------------------------
    Dim mytable As table, i As Long, n As Range
    If Selection.Information(wdWithInTable) = True Then i = 1
    For Each mytable In ActiveDocument.Tables
        If i = 1 Then Set mytable = Selection.Tables(1)
        With mytable
            .Style = "附注表格"
        End With
        If i = 1 Then Exit For
    Next
    '---------------------------------------------------------------------------------------
    Err.Clear: On Error GoTo 0 '恢复错误捕捉
    Application.DisplayAlerts = True  '开启提示
    Application.ScreenUpdating = True   '开启屏幕刷新
End Sub
Sub SingleTableBorders(control As IRibbonControl) '
    Application.ScreenUpdating = False  '关闭屏幕刷新
    Application.DisplayAlerts = False  '关闭提示
    On Error Resume Next  '忽略错误
    '-------------------------------------------------------------------------
    Dim mytable As table, i As Long, n As Range
    Set mytable = Selection.Tables(1)
        With mytable
            .Style = "附注表格"
        End With
    Err.Clear: On Error GoTo 0 '恢复错误捕捉
    Application.DisplayAlerts = True  '开启提示
    Application.ScreenUpdating = True   '开启屏幕刷新
End Sub
Sub FormatAllTable(control As IRibbonControl) '批量调整表格格式
    '功能:光标在表格中处理当前表格;否则处理所有表格!
    Application.ScreenUpdating = False  '关闭屏幕刷新
    Application.DisplayAlerts = False  '关闭提示
    On Error Resume Next  '忽略错误
    '-------------------------------------------------------------------------
    Dim mytable As table, n As Range
    For Each mytable In ActiveDocument.Tables
        With mytable
            .Style = "附注表格"
            '单元格边距
            If Err.Number = 5843 Then '指定的工作表不存在
            MsgBox "设置表格样式,并将其命名为“附注表格”"
            Exit Sub
            End If
            .TopPadding = PixelsToPoints(2, True) '设置上边距为2
            .BottomPadding = PixelsToPoints(2, True) '设置下边距为2
            .LeftPadding = PixelsToPoints(7, True)  '设置左边距为7
            .RightPadding = PixelsToPoints(7, True) '设置右边距为7
            .Spacing = PixelsToPoints(0, True) '允许单元格间距为0
            .AllowPageBreaks = True '允许断页
            '.AllowAutoFit = True '允许自动重调尺寸
            With .Rows
                .WrapAroundText = False '取消文字环绕
                .AllowBreakAcrossPages = False '不允许行断页
                .HeightRule = wdRowHeightAtLeast '行高设为最小值   wdRowHeightAuto '行高设为自动
                .Height = CentimetersToPoints(0.6) '上面缩进量为0
                .LeftIndent = CentimetersToPoints(0) '左面缩进量为0
           End With
            Selection.Font.Name = "宋体"
    Selection.Font.Size = 11
    With Selection.Font
        .NameFarEast = ""
        .NameAscii = ""
        .NameOther = ""
        .Name = ""
        .Spacing = -1
        .Scaling = 100
        .Kerning = 0
        .DisableCharacterSpaceGrid = True
    End With
            With .Range
                With .ParagraphFormat '段落格式
                    .LineUnitBefore = 0.2 '段前0.2
                    .LineUnitAfter = 0.2 '段后0.2
                    .SpaceBefore = 0
                    .SpaceAfter = 0
                    .CharacterUnitFirstLineIndent = 0 '取消首行缩进
                    .FirstLineIndent = CentimetersToPoints(0) '取消首行缩进
                    .CharacterUnitLeftIndent = -0.3 '左缩进
                    .CharacterUnitRightIndent = -0.3 '右缩进
                    .LineSpacingRule = wdLineSpaceExactly '行距固定值
                    .LineSpacing = 14 '设置行间距为14磅,配合行距固定值
                    '.LineSpacingRule = wdLineSpaceSingle '单倍行距  wdLineSpaceExactly '行距固定值
                    .Alignment = wdAlignParagraphCenter '单元格水平居中
                    .AutoAdjustRightIndent = False  '自动调整所选段落的右缩进
                    .DisableLineHeightGrid = True   '选定段落中的字符与行网格对齐
                End With
                .Cells.VerticalAlignment = wdCellAlignVerticalCenter  '单元格垂直居中
                .ParagraphFormat.Alignment = wdAlignParagraphRight
                 With Selection
                     For Each cl In Selection.Cells
                        Acell = ActiveDocument.Range(cl.Range.Start, cl.Range.End - 1).Text '提取文本
                     If IsNumeric(Acell) = False Then
                         Acell.ParagraphFormat.Alignment = wdAlignParagraphRight '数字靠右对齐
                      End If
                      Next
                 End With
            End With
            .Cell(1, 1).Select ' 选中第一个单元格
            With Selection
            .SelectColumn
            Selection.ParagraphFormat.Alignment = wdAlignRowLeft '左数第一列左对齐
            End With
            '设置首行格式
            .Cell(1, 1).Select ' 选中第一个单元格
            With Selection
                .SelectRow '选中当前行
                Selection.ParagraphFormat.Alignment = wdAlignParagraphCenter '垂直水平居中
                Selection.Rows.HeadingFormat = wdToggle '自动标题行重复
            End With
            .Cell(mytable.Rows.Count, 1).Select '选中首列最后一个单元格
            With Selection
                Selection.ParagraphFormat.Alignment = wdAlignRowCenter
            End With
            With Selection.Tables(1)
        .Borders(wdBorderLeft).LineStyle = wdLineStyleNone
        .Borders(wdBorderRight).LineStyle = wdLineStyleNone
        With .Borders(wdBorderTop)
            .LineStyle = wdLineStyleDouble
            .LineWidth = wdLineWidth050pt
            .Color = wdColorAutomatic
        End With
        With .Borders(wdBorderBottom)
            .LineStyle = wdLineStyleDouble
            .LineWidth = wdLineWidth050pt
            .Color = wdColorAutomatic
        End With
        With .Borders(wdBorderHorizontal)
            .LineStyle = wdLineStyleDot
            .LineWidth = wdLineWidth050pt
            .Color = wdColorAutomatic
        End With
        With .Borders(wdBorderVertical)
            .LineStyle = wdLineStyleDot
            .LineWidth = wdLineWidth050pt
            .Color = wdColorAutomatic
        End With
        .Borders(wdBorderDiagonalDown).LineStyle = wdLineStyleNone
        .Borders(wdBorderDiagonalUp).LineStyle = wdLineStyleNone
        .Borders.Shadow = False
    End With
    With Options
        .DefaultBorderLineStyle = wdLineStyleDot
        .DefaultBorderLineWidth = wdLineWidth050pt
        .DefaultBorderColor = wdColorAutomatic
    End With
        .Columns.PreferredWidthType = wdPreferredWidthAuto '自动宽度
        .AutoFitBehavior (wdAutoFitContent) '根据内容调整表格
        .AutoFitBehavior (wdAutoFitWindow) '根据窗口调整表格
        End With
    Next
    '---------------------------------------------------------------------------------------
    'Err.Clear: On Error GoTo 0 '恢复错误捕捉
    Application.DisplayAlerts = True  '开启提示
    Application.ScreenUpdating = True   '开启屏幕刷新
End Sub
QM@7X%@7A@K_8@1F62Y{_LP.jpg

TA的精华主题

TA的得分主题

 楼主| 发表于 2021-10-25 10:08 | 显示全部楼层
image.png 这里我用了字体的代码,但是在批量设置表格里面使用无效果,在单个表格设置里面使用这个代码是有效果的
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-25 20:20 , Processed in 0.035035 second(s), 9 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表