System.WideStrings.TWideStringList.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.WideStrings.pas
System.WideStrings.hpp
System.WideStrings TWideStringList

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.

See Also