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 whether or not Word will suppress paragraph space before and space after options after a page break in this document.
C#
public boolean SuppressSpaceAfterPageBreak{ get; set; }
vb.net
Public Property SuppressSpaceAfterPageBreak() As Boolean

Remarks

MS Word equivalent: Tools menu > Options... > Compatibility tab > Compatibility options for [filename].doc section > Options > Suppress Space Before after a hard page or column break

Examples

C#
//--- Return SuppressSpaceAfterPageBreak
bool suppressSpaceAfterPageBreak = cs.SuppressSpaceAfterPageBreak;
 
//--- Set NoTabForIndent
cs.SuppressSpaceAfterPageBreak = true;
vb.net
'--- Return SuppressSpaceAfterPageBreak
Dim noSpaceForRaisedLower As Boolean = cs.SuppressSpaceAfterPageBreak
 
'--- Set SuppressSpaceAfterPageBreak
cs.SuppressSpaceAfterPageBreak = True
  • No labels