我想在c#中使用OpenXML SDK获取单元格背景颜色。我已经完成的事情:
WorkbookStylesPart styles = document.WorkbookPart.WorkbookStylesPart;
Stylesheet stylesheet = styles.Stylesheet;
CellFormats cellformats = stylesheet.CellFormats;
//Fonts fonts = stylesheet.Fonts;
CellFormat f = (CellFormat)cellformats.ElementAt((int)cell.StyleIndex.Value);
Fill fill = (Fill)styles.Stylesheet.Fills.ChildElements[(int)f.FillId.Value];
fill.PatternFill.BackgroundColor = ???
在上述声明中放入RHS的内容是什么?