Publisher) (FillFormat.Patterned 方法
會將指定的填滿設定為圖樣。
語法
運算式。模式 (模式)
表達 代表 FillFormat 物件的 變數。
參數
名稱 | 必要/選用 | 資料類型 | 描述 |
---|---|---|---|
Pattern | 必要 | MsoPatternType | 指定填滿使用的圖樣。 可以是 Microsoft Office 類型程式庫中所宣告的 MsoPatternType 常數之一。 |
註解
使用 BackColor 及 ForeColor 屬性,來設定圖樣中所使用的色彩。
範例
本範例會新增使用圖樣填滿的橢圓形到使用中的出版物。
With ActiveDocument.Pages(1).Shapes _
.AddShape(Type:=msoShapeOval, _
Left:=60, Top:=60, Width:=80, Height:=40).Fill
.ForeColor.RGB = RGB(128, 0, 0)
.BackColor.RGB = RGB(0, 0, 255)
.Patterned Pattern:=msoPatternDarkVertical
End With
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。