iTextSharp.text.pdf.PdfPRow.GetCells C# (CSharp) Метод

GetCells() публичный Метод

public GetCells ( ) : PdfPCell[]
Результат PdfPCell[]
        public PdfPCell[] GetCells()
        {
            return cells;
        }

Usage Example

Пример #1
0
 /**
  * Copies the content of one row to this row.
  * Don't do this if the rows have a different number of cells.
  * @param copy  the row that needs to be copied
  * @since 5.1.0
  */
 public void CopyContent(PdfPRow copy)
 {
     for (int i = 0; i < cells.Length; ++i)
     {
         if (cells[i] != null)
         {
             cells[i].Column = copy.GetCells()[i].Column;
         }
     }
 }
All Usage Examples Of iTextSharp.text.pdf.PdfPRow::GetCells