NativeExcel for .Net Developer's Reference

IPageSetup.SetPrintTitleColumns Method ()

Sets the first column to be repeated on the left side of each page.

[Visual Basic]
Sub SetPrintTitleColumns()
[C#]
void SetPrintTitleColumns();
[C++]
void SetPrintTitleColumns();
[JScript]
function SetPrintTitleColumns();

Example

This example sets the first column to be repeated on the left side of each page.

[C#]
  book.Worksheets[1].PageSetup.SetPrintTitleColumns();
[Visual Basic]
  book.Worksheets(1).PageSetup.SetPrintTitleColumns()   
[C++]
  book->Worksheets->Item[1]->PageSetup->SetPrintTitleColumns();   

See Also

IPageSetup Interface | NativeExcel Namespace | IPageSetup.SetPrintTitleColumns Overload List | PageSetup Property | SetPrintTitleRows Method | PrintTitleColumns Property | PrintTitleColumnsDefined Property