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
Description

Excerpt

Creates a bookmark on the specified row using the specified name.

Signature
C#
C#
 public void CreateBookmarkOnRow(int row, System.String name)
Signature
vb.net
vb.net
Public Sub CreateBookmarkOnRow(ByVal row As Integer, ByVal name As String)
Parameters
Param
row
row

An int representing the table cell's row.

Param
name
name

A String representing the bookmark name.

Example
Code Block
csharp
csharp
titleC#
oTable.CreateBookmarkOnRow(1, "MyBookmark");
Code Block
vb.net
vb.net
titlevb.net
oTable.CreateBookmarkOnRow(1, "MyBookmark")