Draw a Text on Page
Code Example:
PdfDocument pdfDoc = new PdfDocument();
PdfPage page = pdfDoc.Pages.Add();
PdfFont f = new PdfFont(PdfFontFamily.StandFonts.Helvetica, 20f);
page.Graphics.DrawString("Nasosoft PDF", f, PdfBrushes.Black, new PointF(20, 20 * i));
pdfDoc.Save(fileName);
Dim pdfDoc As New PdfDocument()
Dim page As PdfPage= pdfDoc.Pages.Add()
Dim f As PdfFont = new PdfFont(PdfFontFamily.StandFonts.Helvetica, 20f)
page.Graphics.DrawString("Nasosoft PDF", f, PdfBrushes.Black, New PointF(20, 20 * i))
pdfDoc.Save(fileName)