FMX.TextLayout.TTextRange

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

  TTextRange = record
    Pos: Integer;
    Length: Integer;
    constructor Create(APos, ALength: Integer);
  end;

C++

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

Propriétés

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

Description

Stocke l'étendue de texte à l'intérieur de ses membres de type entier.

Pos indique la position de départ du texte. Length indique la longueur du texte.

Voir aussi