Example #1
0
 public uint GetBorderIndex(ExcelSheetBorderIndex index)
 {
     if (_indexes != null && _indexes.ContainsKey(index))
     {
         return(_indexes[index]);
     }
     return(0);
 }
Example #2
0
 private void AppendWithIndexSave(Borders parent, Border child, ExcelSheetBorderIndex excelSheetIndex)
 {
     parent.AppendChild(child);
     _indexes.Add(excelSheetIndex, (uint)_indexes.Count);
 }