Hi.
I have some word file,and now I want to convert the word each page to pdf.
but some format change.May I convert the word each page intact for pdf?
Hi.
Hi,
using (Stream stream = File.Create(MyDir + "Rendering.SaveToPdfStreamOnePage Out.pdf"))
{
PdfSaveOptions options = new PdfSaveOptions();
options.PageIndex = 2;
options.PageCount = 1;
doc.Save(stream, options);
}