Excel Graph) (TextureType 属性
返回指定填充的纹理类型。 只读 MsoTextureType。
表达式。TextureType
表达式是必需的。 返回“应用于”列表中的一个对象的表达式。
此属性为只读。 使用 UserTextured 方法设置填充的纹理类型。
以下示例更改图表填充格式的用户定义纹理类型。
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 支持和反馈,获取有关如何接收支持和提供反馈的指南。