ProcessEscapeCharacters |
Top Previous Next |
Object: EHL7.HL7Vendors FileName: EHL7.dll
PROPERTY
Name: ProcessEscapeCharacters DataType: Boolean Mode: Read/Write Description: If TRUE then calls to the VendorEscData method will 'escape' the ESCAPE delimiter according to HL7 escaping rules. If FALSE (the Default Value) calls to the VendorEscData method will ignore the ESCAPE delimiter
Example:
If you have a string = "Esape = \ Field = | Component = ^ SubComponent = &"
oVendor.ProcessEscapeCharacters = False X = oVendor.VendorEscData("Esape = \ Field = | Component = ^ SubComponent = &") X is now "Esape = \ Field = \F\ Component = \S\ SubComponent = \T\"
'Now set this property to True
oVendor.ProcessEscapeCharacters = False X = oVendor.VendorEscData("Esape = \ Field = | Component = ^ SubComponent = &") X is now = "Esape = \E\ Field = \F\ Component = \S\ SubComponent = \T\" See Also: VendorEscData(), ParsingCharacters, EscapeDelimiter
|