Aspose::Cells::PageSetup::SetPrintTitleRows method

PageSetup::SetPrintTitleRows(const U16String&) method

Represents the rows that contain the cells to be repeated at the top of each page.

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

Examples

U16String val = u"$1:$1";
if (pageSetup.GetPrintTitleRows().IsNull())
{
    pageSetup.SetPrintTitleRows(val);
}

See Also

PageSetup::SetPrintTitleRows(const char16_t*) method

Represents the rows that contain the cells to be repeated at the top of each page.

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

Examples

if (pageSetup.GetPrintTitleRows().IsNull())
{
    pageSetup.SetPrintTitleRows(u"$1:$1");
}

See Also