gpt4 book ai didi

c# - NPOI:如何在条件格式中使用自定义 XSSFColor?

转载 作者:行者123 更新时间:2023-12-04 21:04:18 29 4
gpt4 key购买 nike

我有什么:

var sheetCf = sheet.SheetConditionalFormatting;
var rule = sheetCf.CreateConditionalFormattingRule("A2>0");
var fill = rule.CreatePatternFormatting();

fill.FillBackgroundColor = IndexedColors.Red.Index;
fill.FillPattern = (short)FillPattern.SolidForeground;

如何为背景设置自定义颜色?

最佳答案

你在找这个吗

XSSFCellStyle myCellStyle = (XSSFCellStyle)workbook.CreateCellStyle();
myCellStyle.FillBackgroundColor = IndexedColors.LightYellow.Index;
myCellStyle.FillPattern = FillPattern.NoFill;
myCellStyle.FillForegroundColor = IndexedColors.LightTurquoise.Index;

关于c# - NPOI:如何在条件格式中使用自定义 XSSFColor?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28263081/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com