使用OpenXML,如何在excel电子表格中获取现有样式的StyleIndex

时间:2013-03-21 14:44:43

标签: c# excel openxml-sdk

我正在编辑一个现有的Excel电子表格,其中包含一个名为“ myFavouriteStyle ”的现有单元格样式。

使用OpenXML SDK V2 c#如何找到该样式的 StyleIndex ,以便将其应用于我添加到电子表格中的新单元格。

感谢。

1 个答案:

答案 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;
}