// ------------------------------------------------------------------------------------------------ // 描述: // 设计: Skyline(2001.12.29) // 实现: Skyline // 修改:setFontColor // ------------------------------------------------------------------------------------------------ void setFrontColor(Color clr) { CellFormat CF; try { CF = mBook.getCellFormat(); CF.setFontColor(clr.getRGB()); mBook.setCellFormat(CF); } catch (Exception e) { e.printStackTrace(); } }
// ------------------------------------------------------------------------------------------------ // 描述: // 设计: Skyline(2001.12.29) // 实现: Skyline // 修改: // ------------------------------------------------------------------------------------------------ void setBackColor(Color clr) { CellFormat CF; try { CF = mBook.getCellFormat(); CF.setPattern(CellFormat.ePatternSolid); CF.setPatternFG(clr.getRGB()); mBook.setCellFormat(CF); } catch (Exception e) { e.printStackTrace(); } }