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
- Class Vector
- Class U16String
- Class PageSetup
- Namespace Aspose::Cells
- Library Aspose.Cells for C++
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
- Class Vector
- Class PageSetup
- Namespace Aspose::Cells
- Library Aspose.Cells for C++