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}{signature:
}
Signature
vb.net
vb.net
Public Sub CreateBookmarkOnRow(ByVal row As Integer, ByVal name As String)
{signature}
{parameters}
{param:row}An {{int}} representing the table 
Parameters
Param
row
row

An int representing the table cell's

row.

{param} {param:name}A {{String}} representing the bookmark name.{param} {example}{code:csharp|title=C#}

Param
name
name

A String representing the bookmark name.

Example
Code Block
csharp
csharp
titleC#

oTable.CreateBookmarkOnRow(1, "MyBookmark");
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

oTable.CreateBookmarkOnRow(1, "MyBookmark")
{code} {example}