コード例 #1
0
 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;
     if (MergedRowsCount > 1)
     {
         VerticallyMerged = MergedCellValues.Restart;
         //
     }
     IsEmpty = Text.IsNullOrWhiteSpace();
     Row     = cell.r;
     Col     = cell.c;
 }