Excel) (FillFormat.TextureName 属性

返回指定填充的自定义纹理文件的名称。 只读 String

语法

表达式TextureName

表达 一个代表 FillFormat 对象的变量。

备注

使用 UserPictureUserTextured 方法设置填充的纹理文件。

示例

此示例以第一个图表中使用的填充样式对第二个图表的填充格式进行设置。

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 支持和反馈,获取有关如何接收支持和提供反馈的指南。