Ask Ben: Getting Line Breaks To Work In A ColdFusion And POI Generated Excel Document

// Create the sheet in the workbook.
LOCAL.Sheet = ARGUMENTS.WorkBook.CreateSheet(
	JavaCast(
		"string",
		"Movies"
		)
	);
 
// Set the sheet's default column width. This will
// apply to all columns generated for this column
// unless otherwise stated.
LOCAL.Sheet.SetDefaultColumnWidth(
	JavaCast( "int", 23 )
	);

For Cut-and-Paste