我正在编辑一个现有的Excel电子表格,其中包含一个名为“ myFavouriteStyle ”的现有单元格样式。
使用OpenXML SDK V2 c#如何找到该样式的 StyleIndex ,以便将其应用于我添加到电子表格中的新单元格。
感谢。
答案 0 :(得分:0)
如果您可以获得对应用了“myFavouriteStyle”的Cell的引用,您可以:
public static int GetCellStyleIndex(Cell theCell)
{
int cellStyleIndex;
if (theCell.StyleIndex == null)
{
cellStyleIndex = 0;
}
else
{
cellStyleIndex = (int)theCell.StyleIndex.Value;
}
return cellStyleIndex;
}