Hi Eric,
I want my image on one slide to have the action to jump to a hidden slide. I don’t see PresentationBuilder provide code on this part. I used Productivity Tools to see how to do it. Here is the code generated by the tool:
NonVisualDrawingProperties nonVisualDrawingProperties8 = new NonVisualDrawingProperties() { Id = (UInt32Value) 2U, Name = “Picture 1” };
A.HyperlinkOnClick hyperlinkOnClick1 = new A.HyperlinkOnClick() { Id = “rId2”, Action = “ppaction://hlinksldjump” };
nonVisualDrawingProperties8.Append(hyperlinkOnClick1);
How can I do it using Linq to Xml instead of strong typed model?
Thanks in advance!!!