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 columns to use for the print titles. These are the columns that will be repeated on each page of a printed worksheet.

(This is not supported for charts.)

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

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

Param
numColumns
numColumns

The number of columns to include in the print title.

Example
Code Block
csharp
csharp
titleC#

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

ps.SetPrintTitleColumns(0, 5)
{code} {example}