1234567891011121314151617181920212223 |
- /*
- *+------------------------------------------------------------------------+
- *| Licensed Materials - Property of IBM
- *| IBM Cognos Products: Viewer
- *| (C) Copyright IBM Corp. 2013
- *|
- *| US Government Users Restricted Rights - Use, duplication or
- *| disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- *|
- *+------------------------------------------------------------------------+
- */
- function ExportToExcel2000Action()
- {
- this.m_format = "XLS";
- }
- ExportToExcel2000Action.prototype = new ExportFromIframeAction();
- ExportToExcel2000Action.prototype.getWindowTitle = function()
- {
- return RV_RES.RV_EXCEL_2000;
- };
|