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