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}Creates a bookmark on the specified row using the specified name.{excerpt}
{signature:C#}
 public void CreateBookmarkOnRow(int row, System.String name)
{signature}{signature:vb.net}
Public Sub CreateBookmarkOnRow(ByVal row As Integer, ByVal name As String)
{signature}
{parameters}
{param:row}An {{int}} representing the table cell's row.{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}