ColdFusion 9.0 Resources |
IsSpreadsheetFileDescriptionReturns a value that determines if the input is a spreadsheet file. ReturnsA Boolean value. True if the input is a spreadsheet file; False if it is a spreadsheet object. CategoryMicrosoft Office Integration Function syntaxIsSpreadsheetFile(spreadsheetfile) See alsoHistoryColdFusion 9: Added. Parameters
Example<cfset filepath = "C:/Documents/SingleSheet.xls"> <cfoutput># isSpreadSheetObject(filepath)# NOT an Object<br></cfoutput> <cfoutput># isSpreadSheetFile(filepath)# a File<br></cfoutput> |