Application.SmartArtQuickStyles 属性 (Word)

返回 SmartArtQuickStyles 对象,该对象代表应用程序中当前加载的 SmartArt 样式集。 只读。

语法

expressionSmartArtQuickStyles

表达 返回“Application”对象的表达式。

备注

SmartArtQuickStyles 属性的样式集对应于Word的 SmartArt 工具上下文选项卡上 设计选项卡样式组中可用的样式。

示例

下面的代码示例向活动文档中添加 SmartArt 图形,然后将该 SmartArt 图形样式设置为“抛光”。

Dim myShape As Shape 
Dim mySmartArt As SmartArt 
 
Set myShape = ActiveDocument.Shapes.AddSmartArt(Application.SmartArtLayouts(1), 50, 50, 200, 200) 
Set mySmartArt = myShape.SmartArt 
 
mySmartArt.QuickStyle = Application.SmartArtQuickStyles.Item(6)

另请参阅

Application 对象

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。