1234567891011121314151617181920212223 |
- function ExportToExcel2007Action()
- {
- this.m_format = "spreadsheetML";
- }
- ExportToExcel2007Action.prototype = new ExportFromIframeAction();
- ExportToExcel2007Action.prototype.getWindowTitle = function()
- {
- return RV_RES.RV_EXCEL_2007;
- };
|