Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Description

Sets or returns a boolean that represents if Word attempts to keep a paragraph on the same page as the next paragraph. (It prevents a page break a paragraph and the next paragraph.)

C#
public boolean KeepWithNext{ get; set; }
vb.net
Public Property KeepWithNext() As Boolean

Remarks

MS Word equivalent: Format menu > Paragraph... > Line and Page Breaks tab > Pagination section > Keep with next

Examples

C#
//--- Return KeepWithNext
bool keepWithNext = oParagraphFormatting.KeepWithNext;
 
//--- Set KeepWithNext
oParagraphFormatting.KeepWithNext = true;
vb.net
'--- Return KeepWithNext
Dim keepWithNext As Boolean = oParagraphFormatting.KeepWithNext
 
'--- Set KeepWithNext
oParagraphFormatting.KeepWithNext = True
  • No labels