Please can you give an advise to make part of the text to make the bold in my code given below. How to make Bold he text 'Left' and 'right'
FileStream fs = new FileStream("Chapter1_Example1.pdf",
FileMode.Create, FileAccess.Write, FileShare.None);
Document doc = new Document();
PdfWriter writer = PdfWriter.GetInstance(doc, fs);
doc.Open();
Chunk glue = new Chunk(new VerticalPositionMark());
Paragraph p = new Paragraph("Text to the left");
p.Add(new Chunk(glue));
p.Add("Text to the right");
doc.Add(p);
doc.Close();