This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfscript> | |
void function spreadsheetSetCustomPalette(required any workbook, required struct palette){ | |
var customPalette = arguments.workbook.getworkbook().getcustompalette(); | |
var color = ""; | |
var colorIndex = 0; | |
var rgb = ""; | |
for(color in palette){ | |
try{ | |
colorIndex = CreateObject("java", "org.apache.poi.hssf.util.HSSFColor$#UCase( color )#").GetIndex(); |
NewerOlder