|
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
深入学习这个帖子。
Private Sub del()
Dim oChart As Chart
For Each oChart In ThisWorkbook.Charts
Debug.Print oChart.Name
With oChart.ChartTitle
''
Debug.Print .Caption
Debug.Print .Font.FontStyle, .Font.Bold, .Font.Name
Debug.Print .Left, .Top
'Debug.Print .Text
End With
With oChart
Debug.Print .AutoScaling
Debug.Print .ChartType,
'.ChartType = xlColumnStacked
'.ChartType = xl3DArea
'.ChartType = xlColumnStacked
'.ChartType = xlConeBarStacked100
.ChartType = xlBarClustered
.ChartType = xl3DColumn
Stop
Stop
Stop
End With
Next oChart
End Sub
|
|