Exemple #1
0
 public uint GetFillIndex(ExcelStylesheetFillIndex index)
 {
     if (_indexes != null && _indexes.ContainsKey(index))
     {
         return(_indexes[index]);
     }
     return(0);
 }
Exemple #2
0
 private void AppendWithIndexSave(Fills parent, Fill child, ExcelStylesheetFillIndex excelStylesheetIndex)
 {
     parent.AppendChild(child);
     _indexes.Add(excelStylesheetIndex, (uint)_indexes.Count);
 }