KeepTogether
Contents
[
Hide
]ParagraphFormat.KeepTogether property
True if all lines in the paragraph are to remain on the same page.
public bool KeepTogether { get; set; }
Examples
Shows how to insert a paragraph into the document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Font font = builder.Font;
font.Size = 16;
font.Bold = true;
font.Color = Color.Blue;
font.Name = "Arial";
font.Underline = Underline.Dash;
ParagraphFormat paragraphFormat = builder.ParagraphFormat;
paragraphFormat.FirstLineIndent = 8;
paragraphFormat.Alignment = ParagraphAlignment.Justify;
paragraphFormat.AddSpaceBetweenFarEastAndAlpha = true;
paragraphFormat.AddSpaceBetweenFarEastAndDigit = true;
paragraphFormat.KeepTogether = true;
// The "Writeln" method ends the paragraph after appending text
// and then starts a new line, adding a new paragraph.
builder.Writeln("Hello world!");
Assert.True(builder.CurrentParagraph.IsEndOfDocument);
See Also
- class ParagraphFormat
- namespace Aspose.Words
- assembly Aspose.Words