TextEditOptions

TextEditOptions class

Allows to specify custom options for loading plain text (TXT) documents

public class TextEditOptions : IEditOptions

Constructors

Name Description
TextEditOptions() The default constructor.

Properties

Name Description
Direction { get; set; } Allows to specify the direction of text flow in the input plain text document. By default is Left-to-Right.
EnablePagination { get; set; } Allows to enable or disable pagination in the resultant HTML document. By default is disabled (false).
Encoding { get; set; } Character encoding of the text document, which will be applied for its opening
LeadingSpaces { get; set; } Gets or sets preferred option of a leading space handling. By default converts leading spaces to the left indent.
RecognizeLists { get; set; } Allows to specify how numbered list items are recognized when document is imported from plain text format. The default value is true.
TrailingSpaces { get; set; } Gets or sets preferred option of a trailing space handling. By default truncates all trailing spaces.

See Also