I am writing text (a table header) using the following code snippet:
Builder.InsertBreak(BreakType.LineBreak);
Builder.Font.Bold = true;
Builder.Writeln(SectionHeader);
Builder.Font.Bold = false;
var outerTable = Builder.StartTable();
I want the text that is written to the document (In the SectionHeader variable) to flow with the header on a page break. Is there any way to do that or do I just need to add a row in the table and style it so it still looks the same?
I’m using .Net and C# to generate the document.
Thanks