如何在项目符号列表中更改项目符号的颜色?

时间:2019-04-17 22:37:37

标签: excel vba ms-word

我正在尝试使用VBA更改项目符号点的颜色,但始终会卡住。我想将项目符号列表中的所有项目符号都设为蓝色而不是黑色。

2 个答案:

答案 0 :(得分:0)

Microsoft解释您使用类似于以下的代码来更改其ParagraphFormat

With Application.ActivePresentation.Slides(1).Shapes(2).TextFrame

    With .TextRange.ParagraphFormat.Bullet

        .Visible = True

        .RelativeSize = 1.25

        .Font.Color = RGB(255, 0, 255)

    End With

End With 

这是color picker,因此您可以得到所需的精确阴影,并转换为所需的RGB format(xxx,yyy,zzz)。

答案 1 :(得分:0)

在Word中,您不能简单地设置ParagraphFormat.Bullet.Font.Color(如在PowerPoint中),而是指定其他样式,例如。 g。

Selection.ParagraphFormat.Style = "List with red buttons"