Whatever message this page gives is out now! Go check it out!
spreadsheetIsStreamingXMLFormat(spreadSheetObject)Name | Required | Type | Description |
spreadSheetObject | Yes | ExcelInfo | The Excel spreadsheet object to check whether the row is hidden. |
<cfscript>
theFile=GetDirectoryFromPath(GetCurrentTemplatePath()) & "SpreadsheetIsStreamingXMLFormat.xlsx";
obj =streamingSpreadsheetNew("Course")
SpreadsheetSetCellValue(obj,"Test1",1,2)
spreadsheetWrite(obj, "#theFile#", "", "yes", "no")
format=SpreadsheetIsStreamingXMLFormat(obj)
writeOutput("StreamingXML Format: "& format)
</cfscript>