在delphi中操作excel中的图表的函数? ( 积分: 50 )

  • 主题发起人 主题发起人 hello_bbb
  • 开始时间 开始时间
H

hello_bbb

Unregistered / Unconfirmed
GUEST, unregistred user!
ActiveChart.Location Where:=xlLocationAsObject, Name:="表名"
如何改为delphi可以接收的写法?
多谢啦!!
 
ActiveChart.Location Where:=xlLocationAsObject, Name:="表名"
如何改为delphi可以接收的写法?
多谢啦!!
 
xl.ActiveChart.Location(xlLocationAsObject, '表名');
或者xl.ActiveChart.Location(2, '表名');//此处不是2就该为1,记不太清楚了,呵呵!
 
ExcelApp.ActiveChart.Location(1);//创建一个chart1,即图表工作表
ExcelApp.ActiveChart.Location(2,'sheet2');//在sheet2中创建一个嵌入图表
 
后退
顶部