Exemple #1
0
 void FormatCells()
 {
     this.formattedCells = new SortedList(new CellComparer());
     foreach (Cell cell in this.mergedCells)
     {
         FormattedCell formattedCell = new FormattedCell(cell, this.documentRenderer, this.mergedCells.GetEffectiveBorders(cell), this.fieldInfos, 0, 0);
         formattedCell.Format(this.gfx);
         this.formattedCells.Add(cell, formattedCell);
     }
 }
Exemple #2
0
 void FormatCells()
 {
     this.formattedCells = new Hashtable();
     foreach (Cell cell in this.mergedCells.GetCells())
     {
         FormattedCell formattedCell = new FormattedCell(cell, this.documentRenderer, this.mergedCells.GetEffectiveBorders(cell), this.fieldInfos, 0, 0);
         formattedCell.Format(this.gfx);
         this.formattedCells.Add(cell, formattedCell);
     }
 }
Exemple #3
0
 private void FormatCells()
 {
     _formattedCells = new Dictionary <Cell, FormattedCell>(); //new Sorted_List(new CellComparer());
     foreach (Cell cell in _mergedCells)
     {
         FormattedCell formattedCell = new FormattedCell(cell, _documentRenderer, _mergedCells.GetEffectiveBorders(cell),
                                                         _fieldInfos, 0, 0);
         formattedCell.Format(_gfx);
         _formattedCells.Add(cell, formattedCell);
     }
 }
 void FormatCells()
 {
   this.formattedCells = new SortedList(new CellComparer());
   foreach (Cell cell in this.mergedCells)
   {
     FormattedCell formattedCell = new FormattedCell(cell, this.documentRenderer, this.mergedCells.GetEffectiveBorders(cell), this.fieldInfos, 0, 0);
     formattedCell.Format(this.gfx);
     this.formattedCells.Add(cell, formattedCell);
   }
 }
Exemple #5
0
 private void FormatCells()
 {
     _formattedCells = new Dictionary<Cell, FormattedCell>(); //new Sorted_List(new CellComparer());
     foreach (Cell cell in _mergedCells)
     {
         FormattedCell formattedCell = new FormattedCell(cell, _documentRenderer, _mergedCells.GetEffectiveBorders(cell),
                                                         _fieldInfos, 0, 0);
         formattedCell.Format(_gfx);
         _formattedCells.Add(cell, formattedCell);
     }
 }