返回指定填充的紋理類型。MsoTextureType 類型,只讀。
MsoTextureType 可為以下 MsoTextureType 常量之一。 |
msoTexturePreset |
msoTextureTypeMixed |
msoTextureUserDefined 本屬性為只讀屬性??捎?UserTextured 方法設置填充的紋理類型。 |
expression TextureType
expression 必需。該表達式返回“應用于”列表中的對象之一。
本示例更改圖表填充格式的自定義紋理類型。
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