Interior 对象

多个对象

parchildInterior

代表指定对象的内部。

使用 Interior 对象

可用 Interior 属性返回 Interior 对象。下例将图表区颜色设置为灰色,将绘图区颜色设置为绿色。

With myChart

    .PlotArea.Interior.Color = RGB(0, 100, 150)

    .ChartArea.Interior.Color = RGB(50, 10, 50)

End With