FillFormat.Patterned 方法 (Word)
将指定填充设置为一种图案。
语法
表达式。图案化 (模式)
expression 是必需的。 一个代表 FillFormat 对象的变量。
参数
名称 | 必需/可选 | 数据类型 | 说明 |
---|---|---|---|
Pattern | 必需 | MsoPatternType | 用于指定填充方式的图案。 |
备注
背景色 和 前景色 属性用于设置模式中使用的颜色。
示例
本示例在活动文档中添加一个作为填充图案的椭圆。
Sub FillPattern()
With ActiveDocument.Shapes.AddShape _
(msoShapeOval, 60, 60, 80, 40).Fill
.ForeColor.RGB = RGB(128, 0, 0)
.BackColor.RGB = RGB(0, 0, 255)
.Patterned msoPatternDarkVertical
End With
End Sub
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。