Hi,
We are using Aspose.PDF for updating PDF document, here we needed functionality to add bullets for existing paragraph. We are using following code for adding PDF
Aspose.Pdf.Generator.Heading heading3 = new Aspose.Pdf.Generator.Heading(pdf, sec1, 3);
Aspose.Pdf.Generator.Segment segment3 = new Aspose.Pdf.Generator.Segment(heading3);
heading3.Segments.Add(segment3);
segment3.Content = “Bullet3”;
heading3.UserLabel = “Bullet3”;
sec1.Paragraphs.Add(heading3);
http://www.aspose.com/docs/display/pdfnet/Use+System+Defined+Bullets
But this didn’t worked.
Can you please let us know how to add bullets in Existing PDF ?
- Kishan