) Excel (的 FillFormat.PresetTexture 屬性
會傳回指定之填滿的預設材質。 唯讀的 MsoPresetTexture。
語法
運算式。PresetTexture
表達 代表 FillFormat 物件的 變數。
註解
使用 PresetTextured 方法來設定填滿的預設材質。
範例
這個範例會將第二張圖表的填滿格式設定為第一張圖表中所使用的相同樣式。
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 支援與意見反應。