I want to link a given image to another slide within the presentation. I tried adding relationship by the method AddHyperlinkRelationship and passing isExternal parameter as false. But the method is adding relationship with type hyperlink and not slide. Also TargetMode is external in spite of setting isExternal parameter as false.
following is my code snippet:
HyperlinkOnClick hyperlinkOnClick = new HyperlinkOnClick { Id = relationshipId, Action = “ppaction://hlinksldjump”, Tooltip = “Chessboard” };
nonVisualDrawingProperties.InsertBefore(hyperlinkOnClick, nonVisualDrawingPropertiesExtensionList);
reqSlidePart.AddHyperlinkRelationship(linkSlideUri, isExternal: false, relationshipId);