Guest User

Untitled

a guest
Apr 26th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. table4.WidthPercentage = 40;
  2. table4.SpacingBefore = 8;
  3.  
  4. table4.HorizontalAlignment = Element.ALIGN_RIGHT;
  5. PdfPCell levo = new PdfPCell(new Phrase("Ukupan iznos za placanje RSD",FontFactory.GetFont("Arial",7, iTextSharp.text.Font.BOLD)));
  6. PdfPCell desno = new PdfPCell(new Phrase(SVE_UKUPNO.ToString("F"),FontFactory.GetFont("Arial",7,iTextSharp.text.Font.BOLD)));
  7. levo.Border = iTextSharp.text.Rectangle.NO_BORDER;
  8. BaseColor myColor = WebColors.GetRGBColor("#DCDCDC");
  9. levo.BackgroundColor = myColor;
  10. levo.FixedHeight = desno.FixedHeight = 15;
  11. float[] duzina = new float[] { 28, 12};
  12. table4.SetWidths(duzina);
  13. desno.Border = iTextSharp.text.Rectangle.NO_BORDER;
  14. levo.HorizontalAlignment = Element.ALIGN_LEFT;
  15. desno.HorizontalAlignment = Element.ALIGN_RIGHT;
  16. table4.AddCell(levo);
  17. table4.AddCell(desno);
  18.  
  19. doc.Add(table4);
  20. Paragraph tekuciRacun = new Paragraph("Tekuci racun:\nRaiffeisen banka A.D. - Beograd 265-1660310003899-05", FontFactory.GetFont("Arial", 7));
  21. tekuciRacun.SpacingBefore = 60;
  22. doc.Add(tekuciRacun);
Add Comment
Please, Sign In to add comment