vbscript 加粗表头-18-7-26

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vbscript 加粗表头-18-7-26相关的知识,希望对你有一定的参考价值。

Sub BoldTableHeaderVertMergedCells()
    Dim tbl As Word.Table
    Dim cel As Word.Cell
    Dim sel As Word.Selection
    Dim nrCols As Long, nrCol As Long

    Set sel = Selection
    nrCol = 1
    If sel.Information(wdWithInTable) Then
        Set tbl = sel.Tables(1)
        nrCols = tbl.Columns.Count
        Set cel = tbl.Cell(1, 1)
        cel.Select
        Set sel = Selection
        sel.MoveEnd wdCell, nrCols - 1
        sel.Font.Bold = True
    End If
End Sub

以上是关于vbscript 加粗表头-18-7-26的主要内容,如果未能解决你的问题,请参考以下文章

markdown文档表格

vbscript 高亮首字母不大写的实词(表头,标题)

Markdown语法

初次使用Markdown

带标题表头和结构的表格

HTMLHTML 表格 ② ( 表头单元格标签 | 表格标题标签 )