System.Classes.TStringsOption

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TStringsOption = (soStrictDelimiter, soWriteBOM, soTrailingLineBreak,
soUseLocale);

C++

enum DECLSPEC_DENUM TStringsOption : unsigned char { soStrictDelimiter, soWriteBOM, soTrailingLineBreak, soUseLocale };

Properties

Type Visibility Source Unit Parent
enum public
System.Classes.pas
System.Classes.hpp
System.Classes System.Classes

Description

Represents a set of TStrings boolean properties.

TStringsOption represents the following options:

  • soStrictDelimiter -- Determines the enabled characters that can be used as delimiters to separate strings.
  • soWriteBOM -- Determines whether to write a BOM to the stream and to the file or not.
  • soTrailingLineBreak -- Determines whether or not the Text property must contain a line break after the last line.
  • soUseLocale -- Determines the implementation that the list of strings must use for string comparison.

See Also