System.Classes.TStringsDefined

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TStringsDefined = set of (sdDelimiter, sdQuoteChar, sdNameValueSeparator,
sdLineBreak, sdStrictDelimiter);

C++

typedef System::Set<System_Classes__23, System_Classes__23::sdDelimiter, System_Classes__23::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.

See Also