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 expand character spaces on the line ending in SHIFT + RETURN in this document.
C#
public boolean ExpandShiftReturn{ get; set; }
vb.net
Public Property ExpandShiftReturn() As Boolean

Remarks

MS Word equivalent: Tools menu > Options... > Compatibility tab > Compatibility options for [filename].doc section > Options > Don't expand character spaces on the line ending Shift-Return

Examples

C#
//--- Return ExpandShiftReturn
bool expandShiftReturn = cs.ExpandShiftReturn;
 
//--- Set ExpandShiftReturn
cs.ExpandShiftReturn = true;
vb.net
'--- Return ExpandShiftReturn
Dim expandShiftReturn As Boolean = cs.ExpandShiftReturn
 
'--- Set ExpandShiftReturn
cs.ExpandShiftReturn = True
  • No labels