我正在尝试自动执行xlDialogChartSourceData对话框;方法“ Show”中可能有30个参数,但是,https://docs.microsoft.com/en-us/office/vba/excel/Concepts/Controls-DialogBoxes-Forms/built-in-dialog-box-argument-lists页上没有显示哪个参数。
此代码显示对话框,但是我想标记或取消标记左右列表中的某些值。
Sub proDiaAktualisieren()
Dim objDiagramm
Diagrammmuster1.Activate
For Each objDiagramm In Diagrammmuster1.ChartObjects
objDiagramm.Activate
With ActiveChart
Application.Dialogs(xlDialogChartSourceData).Show
End With
Next
End Sub
“。Show”的参数是什么,它们在对话框中控制什么?