Excel) (FillFormat.PresetTextured 方法
會將指定的填滿格式設定為預設材質。
語法
運算式。PresetTextured (PresetTexture)
表達 代表 FillFormat 物件的 變數。
參數
名稱 | 必要/選用 | 資料類型 | 描述 |
---|---|---|---|
PresetTexture | 必要 | MsoPresetTexture | 要套用的材質類型。 |
範例
這個範例會將第二張圖表的填滿格式設定為第一張圖表中所使用的相同樣式。
Set c1f = Charts(1).ChartArea.Fill
If c1f.Type = msoFillTextured Then
With Charts(2).ChartArea.Fill
.Visible = True
If c1f.TextureType = msoTexturePreset Then
.PresetTextured c1f.PresetTexture
Else
.UserTextured c1f.TextureName
End If
End With
End If
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。