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 lay out tables using their raw width in this document.
C#
public boolean UseTableRawWidth{ get; set; }
vb.net
Public Property UseTableRawWidth() As Boolean

Remarks

MS Word equivalent: Tools menu > Options... > Compatibility tab > Compatibility options for [filename].doc section > Options > Lay out tables with raw width

Examples

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