コード例 #1
0
 /// <summary>
 /// Adds a new Hyperlink of Type "ExternalBookmark", i.e. the target is a Bookmark in an external PDF Document.
 /// </summary>
 /// <param name="filename">The path to the target document.</param>
 /// <param name="bookmarkName">The Named Destination's name in the target document.</param>
 /// <param name="newWindow">Defines if the HyperlinkType ExternalBookmark shall be opened in a new window.
 /// If not set, the viewer application should behave in accordance with the current user preference.</param>
 public Hyperlink AddHyperlink(string filename, string bookmarkName, HyperlinkTargetWindow newWindow = HyperlinkTargetWindow.UserPreference)
 {
     return(Elements.AddHyperlink(filename, bookmarkName, newWindow));
 }
コード例 #2
0
 /// <summary>
 /// Adds a new Hyperlink
 /// </summary>
 public Hyperlink AddHyperlink(string name, HyperlinkType type)
 {
     return(Elements.AddHyperlink(name, type));
 }
コード例 #3
0
 /// <summary>
 /// Adds a new Hyperlink of Type "Local", i.e. the target is a Bookmark within the Document.
 /// </summary>
 public Hyperlink AddHyperlink(string bookmarkName)
 {
     return(Elements.AddHyperlink(bookmarkName));
 }