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 display the footer inside the page border for a document.
C#
public boolean IncludeFooterInBorder{ get; set; }
vb.net
Public Property IncludeFooterInBorder() As Boolean

Remarks

This option is set to true by default.

MS Word equivalent: Format menu > Border and Shading... > Page Border tab > Options... button > Options section > Surround footer

Examples

C#
//--- Return IncludeHeaderInBorder
bool includeHeader = viewSettings.IncludeHeaderInBorder;
 
//--- Set IncludeHeaderInBorder
viewSettings.IncludeHeaderInBorder = false;
vb.net
'--- Return IncludeHeaderInBorder
Dim includeHeader As Boolean = viewSettings.IncludeHeaderInBorder
 
'--- Set IncludeHeaderInBorder
viewSettings.IncludeHeaderInBorder = False
  • No labels