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 the specified row using the specified name.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Creates a bookmark on the specified row using the specified name.{excerpt}
{signature:C#}
 public void CreateBookmarkOnRow(int row, System.String name)
Signature
{signature}{signature:vb.net
vb.net
}
Public Sub CreateBookmarkOnRow(ByVal row As Integer, ByVal name As String)
Parameters
{param}
{param:name}A {{String}} representing the bookmark name.{param}
{example}{code:csharp|title=C#}
oTable.CreateBookmarkOnRow(1, "MyBookmark");
{code}
{code:vb.net
|title=vb.net
}
oTable.CreateBookmarkOnRow(1, "MyBookmark"){code}

{example}
Param
rowrowAn int representing the table
{signature}
{parameters}
{param:row}An {{int}} representing the table cell's row.
Param
namename

A String representing the bookmark name.

Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle