Enum X12DocOptions
Flags to apply constraints on the writtin transaction when saving a transaction with Save(String, X12DocOptions)
Namespace: Bishop.X12
Assembly: Bishop.X12.dll
Syntax
[Flags]
public enum X12DocOptions : uint
Fields
value | Name | Description |
---|---|---|
0 | None | |
1 | ForceCompliant | On saving X12Doc all required loops, segments and elements are written as defined in the applicable X12 implementation guide. (Default: set) |
2 | UseDefaultDelimiters | Write Only. Applies default X12 delimiters as set in the specific X12 implementation guides ignoring any changes made programmatically to the delimiters in the document using SetDelimiters(Char, Char, Char, Char) as well as ignoring delimiters set by the originator of the X12 document when replying to a transaction. |
4 | UseUpperCase | Writes all data in upper case. |
8 | InsertCrLf | Inserts a CrLf after each segment delimiter when saving a transaction to a file. |