如何制作不可见的 excel 图表
How to make invisible excel chart
VBA 中的此代码生成弹出窗口 excel 并自动关闭。这里如何使可见 false
Set mchart1 = ActiveDocument.Shapes.AddChart(xl3DAreaStacked, , , shp1.Width, shp1.Height)
谢谢
请使用下一行代码:
mchart1.Chart.ChartData.Workbook.Application.Visible = False
但是你有时需要它们可见并用它们做些什么吗?
如果你迭代很多次并且你的代码创建了很多这样的Excel图表,你的内存将会被很多无用的垃圾占用...
如果你能理解我的顾虑,你可以更改上面的解决方案:
mchart1.Chart.ChartData.Workbook.Application.Quit
VBA 中的此代码生成弹出窗口 excel 并自动关闭。这里如何使可见 false
Set mchart1 = ActiveDocument.Shapes.AddChart(xl3DAreaStacked, , , shp1.Width, shp1.Height)
谢谢
请使用下一行代码:
mchart1.Chart.ChartData.Workbook.Application.Visible = False
但是你有时需要它们可见并用它们做些什么吗?
如果你迭代很多次并且你的代码创建了很多这样的Excel图表,你的内存将会被很多无用的垃圾占用...
如果你能理解我的顾虑,你可以更改上面的解决方案:
mchart1.Chart.ChartData.Workbook.Application.Quit