使用英语阅读

通过


UserTextured 方法 (Excel Graph)

用一张图像的平铺形式填充指定形状。 如果要用一张大图像来填充该形状,请使用 UserPicture 方法。

语法

表达式UserTextured (TextureFile)

expression 是必需的。 返回 ChartFillFormat 对象的表达式。

参数

名称 必需/可选 数据类型 说明
TextureFile 必需 字符串 指定图片文件的名称。

示例

以下示例更改图表填充格式的用户定义纹理类型。

With myChart.ChartArea.Fill 
 If .Type = msoFillTextured Then 
 If .TextureType = msoTextureUserDefined Then 
 If .TextureName = "C:\brick.bmp" Then 
 .UserTextured "C:\stone.bmp" 
 End If 
 End If 
 End If 
End With

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。