TxtSaveOptions.MaxCharactersPerLine
TxtSaveOptions MaxCharactersPerLine property. Gets or sets an integer value that specifies the maximum number of characters per one line. The default value is 0 that means no limit.
TxtSaveOptions.MaxCharactersPerLine property
Gets or sets an integer value that specifies the maximum number of characters per one line. The default value is 0, that means no limit.
public int MaxCharactersPerLine { get; set; }
Examples
Shows how to specify max characters count in TXT document.
TxtSaveOptions txtSaveOptions = new TxtSaveOptions();
txtSaveOptions.MaxCharactersPerLine = 50;
Converter.Create()
.From(MyDir + "Simple.docx")
.To(ArtifactsDir + "TxtSaveOptions.MaxCharactersPerLine.txt", txtSaveOptions)
.Execute();
See Also
- class TxtSaveOptions
- namespace Wordize.Saving
- assembly Wordize