Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
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#
Wiki Markup
{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.)_{excerpt}
{signature: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)
Parameters
{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#}
ps.SetPrintTitleRows(0, 2);
{code}
{code:vb.net
|title=vb.net
}
ps.SetPrintTitleRows(0, 2){code}

{example}
Param
firstRowfirstRow

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

Param
numRowsnumRows

The number of rows to include in the print title.

Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle