FMX.TextLayout.TTextRange

提供: RAD Studio API Documentation
移動先: 案内検索

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() {}
};

プロパティ

種類 可視性 ソース ユニット
record
struct
public
FMX.TextLayout.pas
FMX.TextLayout.hpp
FMX.TextLayout FMX.TextLayout

説明

テキストの範囲を整数型メンバ内に格納するものです。

Pos はテキストの開始位置を示します。 Length はテキストの長さを示します。

関連項目