Can I open a pdf without save it?
For example :
I created a pdf like this :
Pdf pdf1 = new
Pdf();
Section sec1 = pdf1.Sections.Add();
sec1.Paragraphs.Add(new Text("Hello World"));
pdf1.Save("HelloWorld.pdf"); <----- I don´t wanna to save, only show. If user want to save, he saves. How can I do it?