System.StrUtils.TCompareTextProc

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TCompareTextProc = function(const AText, AOther: string): Boolean;

C++

typedef bool __fastcall (*TCompareTextProc)(const System::UnicodeString AText, const System::UnicodeString AOther);

Properties

Type Visibility Source Unit Parent
type
typedef
public
System.StrUtils.pas
System.StrUtils.hpp
System.StrUtils System.StrUtils

Description

TCompareTextProc is a function pointer which specifies a function to compare two string values, AText, and AOther, and return true if these two values are equivilant.

See Also