如题:在Delphi中我可以这样操纵Excel:
procedure TForm1.Button1Click(Sender: TObject);
var
  MsExcel:variant;
begin
  try
    MsExcel:=CreateOleObject('Excel.application');
  except
    Application.MessageBox('请安装Excel!','提示',MB_ICONINFORMATION+MB_OK);
    exit;
  end;
  MsExcel.visible:=true;
  MsExcel.Cells[1,1].Value := 'fdsa';
  ......等等
end;
针对WPS表格应该怎样控制呢?