Gets a value that indicates whether the PrintTitleColumns is defined.
[Visual Basic] Property ReadOnly PrintTitleColumnsDefined As Boolean [C#] bool PrintTitleColumnsDefined { get; } [C++] __property bool get_PrintTitleColumnsDefined(); [JScript] function get PrintTitleColumnsDefined() : bool
True if PrintTitleColumns is defined; otherwise, false.
This example clears the PrintTitleColumns if it's defined.
[C#]
if (book.Worksheets[1].PageSetup.PrintTitleColumnsDefined)
book.Worksheets[1].PageSetup.PrintTitleColumns = "";
[Visual Basic]
If book.Worksheets(1).PageSetup.PrintTitleColumnsDefined Then
book.Worksheets(1).PageSetup.PrintTitleColumns = ""
End If
[C++]
if (book->Worksheets->Item[1]->PageSetup->PrintTitleColumnsDefined)
book->Worksheets->Item[1]->PageSetup->PrintTitleColumns = S"";
IPageSetup Interface | NativeExcel Namespace | PageSetup Property | PrintTitleColumns Property