어느 가을날의 전환점

MiPlatform|엑셀(Excel) 2007 파일 생성하기(Export, xlsx) 본문

Software/MiPlatform

MiPlatform|엑셀(Excel) 2007 파일 생성하기(Export, xlsx)

어느가을빛 2011. 1. 26. 14:27

var ExportObject1;
var fileName = "파일경로/파일명.xlsx";
ExportObject1 = CreateExportObject();
ExportObject1.ExportType = "Excel";
ExportObject1.ExportFileName = fileName;
ExportObject1.ActiveSheetName = "sheet1";
ExportObject1.MakeEmptyFileWhenNotExist = true;
ExportObject1.AddExportGrid("sheet1" + "!" + "A1", divGridPanel.object(sGrid), true, false);
ExportObject1.Export();
ExportObject1.Save();
ExportObject1.Close();
ExportObject1 = null;

Comments