public HtmlAdapterCell(IAdapter.TJsonCell cell)
 {
     Text            = cell.t;
     MergedColsCount = cell.mc;
     MergedRowsCount = cell.mr;
     IsEmpty         = Text.IsNullOrWhiteSpace();
     Row             = cell.r;
     Col             = cell.c;
 }
예제 #2
0
 public OpenXmlWordCell(IAdapter.TJsonCell cell)
 {
     Text               = cell.t;
     MergedColsCount    = cell.mc;
     MergedRowsCount    = cell.mr;
     IsVerticallyMerged = MergedRowsCount > 1;
     IsEmpty            = Text.IsNullOrWhiteSpace();
     Row = cell.r;
     Col = cell.c;
 }