FMX.TextLayout.TTextRange

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TTextRange = record

C++

struct DECLSPEC_DRECORD TTextRange
{
public:
    int Pos;
    int Length;
    __fastcall TTextRange(int APos, int ALength);
    bool __fastcall InRange(const int AIndex);
    TTextRange() {}
};

Properties

Type Visibility Source Unit Parent
record
struct
public
FMX.TextLayout.pas
FMX.TextLayout.hpp
FMX.TextLayout FMX.TextLayout

Description

Stores the text range inside its integer-type members.

Pos indicates the starting position of the text. Length indicates the length of the text.

See Also