TxtSaveOptions.PreserveTableLayout
TxtSaveOptions PreserveTableLayout property. Specifies whether the program should attempt to preserve layout of tables when saving in the plain text format. The default value is false.
TxtSaveOptions.PreserveTableLayout property
Specifies whether the program should attempt to preserve layout of tables when saving in the plain text format. The default value is false
.
public bool PreserveTableLayout { get; set; }
Examples
Shows how to configure Wordize to preserve table layout in TXT format.
TxtSaveOptions txtSaveOptions = new TxtSaveOptions();
txtSaveOptions.PreserveTableLayout = true;
Converter.Create()
.From(MyDir + "Simple.docx")
.To(ArtifactsDir + "TxtSaveOptions.PreserveTableLayout.txt", txtSaveOptions)
.Execute();
See Also
- class TxtSaveOptions
- namespace Wordize.Saving
- assembly Wordize