Adds information to an Excel spreadsheet object.
spreadsheetAddInfo(spreadsheetObj, info)
→ returns void
<cfset a = SpreadsheetNew( "Test" )>
<cfset info = StructNew()>
<cfset info.title="Title">
<cfset info.category="Category test">
<cfset info.author="ABC">
<cfset info.comments="Comments for this file">
<cfset spreadsheetAddInfo(a,info)>
<cfdump var="#a#" />
Signup for cfbreak
to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.