ExportToExcel2000Action.js 638 B

1234567891011121314151617181920212223
  1. /*
  2. *+------------------------------------------------------------------------+
  3. *| Licensed Materials - Property of IBM
  4. *| IBM Cognos Products: Viewer
  5. *| (C) Copyright IBM Corp. 2013
  6. *|
  7. *| US Government Users Restricted Rights - Use, duplication or
  8. *| disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  9. *|
  10. *+------------------------------------------------------------------------+
  11. */
  12. function ExportToExcel2000Action()
  13. {
  14. this.m_format = "XLS";
  15. }
  16. ExportToExcel2000Action.prototype = new ExportFromIframeAction();
  17. ExportToExcel2000Action.prototype.getWindowTitle = function()
  18. {
  19. return RV_RES.RV_EXCEL_2000;
  20. };