System.Classes.TStringsDefined
Delphi
TStringsDefined = set of TStringsDefinedItem;
C++
typedef System::Set<TStringsDefinedItem, TStringsDefinedItem::sdDelimiter, TStringsDefinedItem::sdStrictDelimiter> TStringsDefined;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
set typedef |
public | System.Classes.pas System.Classes.hpp |
System.Classes | System.Classes |
Description
TStringsDefined defines an enumeration of string delimiter names.
The TStringsDefined type is used internally by Delphi as the set of possible string delimiters. The values are :
Value | Meaning |
---|---|
sdDelimiter |
Separator between strings in a list. Such as read/set by Delimiter and used in DelimitedText. |
sdQuoteChar |
Quote character around strings in a list. Such as read/set by QuoteChar and used in DelimitedText. |
sdNameValueSeparator |
Defines the character that separates name and value pair strings (normally '='). Such as read/set by the NameValueSeparator property. Used by Names, Values and ValueFromIndex |
sdLineBreak |
Defines the line break character(s). Such as read/set by the LineBreak property. |
sdStrictDelimiter |
Defines whether only the specified sdDelimiter can be used to separate strings in a DelimitedText, or whether blanks or a non printable character can be used as well. |
Note: References to TStrings equally apply to TStringList.