FontBold 属性

       

MsoTriState,可读写。

示例

如果该图形是艺术字,本示例将活动文档的第三个图形的字体设置为粗体。

Dim docActive As Document

Set docActive = ActiveDocument

With docActive.Shapes(3)
    If .Type = msoTextEffect Then
        .TextEffect.FontBold = msoTrue
    End If
End With