Ejemplo n.º 1
0
 public StaticCell(int sheetIndex, string address, ICellWriter <T> writer)
 {
     Address    = address;
     CellWriter = writer;
     SheetIndex = sheetIndex;
 }
Ejemplo n.º 2
0
 public ObjectCellWriter(ICellWriter <TConvert> internalWriter)
 {
     this.internalWriter = internalWriter;
 }
Ejemplo n.º 3
0
 public void AddCellWriter(Type type, ICellWriter cellWriter)
 {
     _cellWriters[type] = cellWriter;
 }
Ejemplo n.º 4
0
 public CellWriteException(ICellWriter <T> writer, Exception innerException)
     : base($"error when excute CellWriter {writer.GetType()} Tag:{writer.Tag}", innerException)
 {
 }