System.Classes.TStringList.CaseSensitive

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property CaseSensitive: Boolean read FCaseSensitive write SetCaseSensitive;

C++

__property bool CaseSensitive = {read=FCaseSensitive, write=SetCaseSensitive, nodefault};

Properties

Type Visibility Source Unit Parent
property public
System.Classes.pas
System.Classes.hpp
System.Classes TStringList

Description

Controls whether strings are located, sorted, and identified as duplicates in a case-sensitive or case-insensitive manner.

Use CaseSensitive to indicate whether strings in the list should be compared in a case-sensitive or case-insensitive manner. Set CaseSensitive to True to make the string list locate, check for duplicates, and sort its strings in a case-sensitive manner. Set CaseSensitive to False to make the string list perform these operations case-insensitively.

Note: By default, the CaseSensitive property is set to False.

See Also