Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Wiki Markup
{description}
{excerpt}Returns a [Bookmark|Bookmark] object that represents the bookmark in this document that has the specified name.{excerpt}
{signature:C#}
 public Bookmark GetBookmark(System.String name)
{signature}{signature:vb.net}
Public Function GetBookmark(ByVal name As String) As Bookmark
{signature}
{parameters}
{param:name}The name of the bookmark.{param}
{returns}A {{Bookmark}} object representing the bookmark specified.{returns}
{example}{code:csharp|title=C#}

          Bookmark oBookmark = oDocument.GetBookmark("MyBookmark");
        {code}
{code:vb.net|title=vb.net}

          Dim oBookmark As Bookmark = oDocument.GetBookmark("MyBookmark")
        {code}

{example}