23

Is it possible to bold a single word within a sentence with iTextSharp? I am trying to bold several individual words without having to break the string into individual phrases.

I want to this type of out put

Eg:REASON(S) FOR CANCELLATION: See Statutory reason(s) designated by Code No(s) 1 on the reverse side hereof.

My actual output is below

Eg:REASON(S) FOR CANCELLATION: See Statutory reason(s) designated by Code No(s) 1 on the reverse side hereof.

Code

    pdftb4 = new PdfPTable(1);
    pdftb4.WidthPercentage = 100;
    width = new float[1];
    width[0] = 0.7F;
    pdftb4.SetWidths(width);

  pdfcel4 = new PdfPCell(new Phrase("\n REASON(S) FOR CANCELLATION: See Statutoryreason(s) designated by Code No(s) 1 on the reverse side hereof", docBlackFont10));
    pdfcel4.Border = 0;
    pdfcel4.HorizontalAlignment = Element.ALIGN_LEFT;
    pdftb4.AddCell(pdfcel4);
   objDocument.Add(pdftb4);

somebody please help me

Neeraj
  • 486
  • 5
  • 10
  • 22

3 Answers3

44

The way to accomplish what you are trying is with Chunks. A simple example is:

var normalFont = FontFactory.GetFont(FontFactory.HELVETICA, 12);
var boldFont = FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 12);

var phrase = new Phrase();
phrase.Add(new Chunk("REASON(S) FOR CANCELLATION:", boldFont));
phrase.Add(new Chunk(" See Statutoryreason(s) designated by Code No(s) 1 on the reverse side hereof", normalFont));
Chris Haas
  • 53,986
  • 12
  • 141
  • 274
  • 2
    `var boldFont = FontFactory.GetFont(FontFactory.HELVETICA, 12, Font.BOLD);` because you want a different style of the same font. – JP Hellemons Mar 02 '16 at 10:40
3

Can also create font like

Font verdanaBold = FontFactory.GetFont("Verdana", 7f, Font.BOLD);
JP Hellemons
  • 5,977
  • 11
  • 63
  • 128
ChrisJL
  • 39
  • 2
0

Maybe this link Bolding with Rich Text Values in iTextSharp will help?

Not sure if it fits your scenario completely but might get you where you need to go.

Community
  • 1
  • 1
richk
  • 424
  • 2
  • 7