FMX.Memo.Types.TFragmentInserted

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

Delphi

  TFragmentInserted = record
    StartPos: Integer;
    FragmentLength: Integer;
    PairedWithPrev: Boolean;
    Typed: Boolean;
  public
    class function Create(const StartPos, FragmentLength: Integer;
      const PairedWithPrev, Typed: Boolean): TFragmentInserted; static; inline;
  end;

C++

struct DECLSPEC_DRECORD TFragmentInserted
{
public:
    int StartPos;
    int FragmentLength;
    bool PairedWithPrev;
    bool Typed;
    static TFragmentInserted __fastcall Create(const int StartPos, const int FragmentLength, const bool PairedWithPrev, const bool Typed);
};

プロパティ

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


説明

挿入されたテキスト断片に関する情報を保持するためのレコードです。

関連項目