I have a method called Save
which saves a PDF document at a specified location.
PdfDocument Document=new PdfDocument();
public void Save(string pathWithFileName)
{
Document.Save(pathWithFileName);
}
Now I draw some paragraphs, using XGrahics
class. Then I save the document using Save
method. It works perfectly.
Now I want to reopen document, add some stuff and again save the document. How can I do this?