The attached file has 18 links, but when I use the code below it incorrectly shows 20 links. Is there a workaround for this bug and if not, could you get a hot fix out?
public static void ShowLinks()
{
var doc = new Presentation(@“c:\temp\links.ppt”);
foreach (var slide in doc.Slides)
{
foreach (var shape in slide.Shapes)
{
if (shape.ToString() != @“Aspose.Slides.AutoShape”)
{
continue;
}
AutoShape shape1 = (AutoShape)shape;
ITextFrame textFrame = shape1.TextFrame;
foreach (var paragraph in textFrame.Paragraphs)
{
foreach (var portion in paragraph.Portions)
{
var format = portion.PortionFormat;
if (!string.IsNullOrEmpty(format?.HyperlinkClick?.ExternalUrl))
{
Console.WriteLine(format.HyperlinkClick.ExternalUrl + @"; " + portion.Text);
}
}
}
}
}
}
Do you have any estimate when this will be done? It would be great if we could get it next week since we have a release going out shortly and we can’t use Aspose.Slides until this issue is fixed.
Hi Thomas,
It’s been almost a month, any update?
This bug blocks us using Aspose.Slides.
Hi Thomas,
A month has since almost passed. Has this been fixed?
Hi Thomas,
Thank you, this helped resolve the issue
Hi Thomas,
The issues you have found earlier (filed as SLIDESNET-38085) have been fixed in this update.
This message was posted using Notification2Forum from Downloads module by Aspose Notifier.