Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Creates a bookmark on this Element with the specified name.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Creates a bookmark on this Element with the specified name.{excerpt}
{signature:C#}
 public virtual void CreateBookmark(System.String name)
Signature
{signature}{signature:vb.net
vb.net
}
Public Overridable Sub CreateBookmark(ByVal name As String)
Parameters
{signature}
{parameters}
{param:name}A {{String}} representing the name to give this bookmark.{param}
{example}{code:csharp|title=C#}
e.CreateBookmark("MyBookmark");
{code}
{code:vb.net
|title=vb.net
}
e.CreateBookmark("MyBookmark"){code}

{example}
Param
namename

A String representing the name to give this bookmark.

Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle