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

Sets the rows to use for the print titles. These are the rows that will be repeated on each page of a printed worksheet.

(This is not supported for charts.)

Signature
C#
C#
 public void SetPrintTitleRows(int firstRow, int numRows)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Sub SetPrintTitleRows(ByVal firstRow As Integer, ByVal numRows As Integer)
{signature}
{parameters}
{param:firstRow}The 0\-based number of the first row to in the print title.{param}
{param:numRows}The number of rows to include in the print title.{param}
{example}{code:csharp|title=C#}
Parameters
Param
firstRow
firstRow

The 0-based number of the first row to in the print title.

Param
numRows
numRows

The number of rows to include in the print title.

Example
Code Block
csharp
csharp
titleC#

ps.SetPrintTitleRows(0, 2);
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

ps.SetPrintTitleRows(0, 2)
{code} {example}