Hey,
Hi Eyalb,
Thanks for your inquiry.
Aspose.Words does not offer any control for progress bar while conversion of document. However, you can easily create progress bar and add it into your code by using .NET code. Please read following web links for your kind reference. Hope this helps you.
Moreover, please note that Aspose.Words for .NET is a class library that enables your applications to perform a great range of document processing tasks. Aspose.Words supports DOC, DOCX, RTF, HTML, OpenDocument, PDF, XPS, EPUB and other formats. With Aspose.Words you can generate, modify, convert, render and print documents without utilizing Microsoft Word®.
Hey, i think you might have misunderstood,
Hi Eyalb,
Thanks, we’d love to have this feature,
Hi Eyalb,
Hi,
Hi Eyalb,
currently not supported but for the sake of implementation, I have logged this
requirement in our issue tracking system under New Features list as PDFNEWNET-35843.
We will further investigate this requirement in details and will keep you
updated on the status of a correction.
We apologize for your inconvenience.
Hi, All,
Hi Eyalb,
Hi Eyalb,
I like to share that requested support for adding the progress bar while exporting presentation to PDF is still unavailable in Aspose.Slides for .NET at the moment. We are hopeful to implement the requested feature support during Q2 of 2014. We will share the feedback with you as soon as the requested support will be available in Aspose.Slides.
Many Thanks,
The issues you have found earlier (filed as PDFNEWNET-35843) have been fixed in Aspose.Pdf for .NET 9.1.0.
For further details, you may check this blog post.
This message was posted using Notification2Forum from Downloads module by Aspose Notifier.
(4)
Hi Eyalb,
Thanks for your patience. We have good news for you, your requested feature to know the conversion progress status has been implemented in Aspose.Pdf for .NET 9.1.0. Please check the documentation link
for the details and sample code snippet. It will help you to accomplish your requirements.
Please feel free to contact us for any further assistance.
Best Regards,
This is to inform you that we have fixed your issue (logged earlier as “CELLSNET-42029”) now. We will soon provide you the fixed version after performing QA and incorporating other enhancements and fixes.
Please try our latest version/fix: Aspose.Cells for .NET v19.6.1 (attached)
Your issue should be fixed in it.
We add new API PdfSaveOptions.PageSavingCallback
.
e.g
Sample code:
Workbook wb = new Workbook("Book1.xlsx");
PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
pdfSaveOptions.PageSavingCallback = new TestPageSavingCallback();
wb.Save("outFile.pdf", pdfSaveOptions);
public class TestPageSavingCallback : IPageSavingCallback
{
public void PageStartSaving(PageStartSavingArgs args)
{
Console.WriteLine("Start saving page index {0} of pages {1}", args.PageIndex, args.PageCount);
//don't output pages before page index 2.
if(args.PageIndex < 2)
{
args.IsToOutput = false;
}
}
public void PageEndSaving(PageEndSavingArgs args)
{
Console.WriteLine("End saving page index {0} of pages {1}", args.PageIndex, args.PageCount);
//don't output pages after page index 8.
if(args.PageIndex >= 8)
{
args.HasMorePages = false;
}
}
}
Let us know your feedback.
Aspose.Cells19.6.1 For .Net2_AuthenticodeSigned.Zip (4.9 MB)
Aspose.Cells19.6.1 For .Net4.0.Zip (4.9 MB)
It seems that heartless chat-pot respond this way without understanding your straight forward question.
I am sorry but I didn’t understand you. If you find any issue using Aspose APIs, would you please elaborate your issue/requirements in details and provide sample code and template files, so we could understand your issue and help you accordingly.