Aspose::Cells::PageSetup::SetPrintTitleColumns method

PageSetup::SetPrintTitleColumns(const U16String&) method

Represents the columns that contain the cells to be repeated on the left side of each page.

void Aspose::Cells::PageSetup::SetPrintTitleColumns(const U16String &value)

Examples

U16String val = u"$A:$A";
if (pageSetup.GetPrintTitleColumns().IsNull())
{
    pageSetup.SetPrintTitleColumns(val);
}

See Also

PageSetup::SetPrintTitleColumns(const char16_t*) method

Represents the columns that contain the cells to be repeated on the left side of each page.

void Aspose::Cells::PageSetup::SetPrintTitleColumns(const char16_t *value)

Examples

if (pageSetup.GetPrintTitleColumns().IsNull())
{
    pageSetup.SetPrintTitleColumns(u"$A:$A");
}

See Also