API:FMX.Memo.Types.TFragmentInserted

From RAD Studio API Documentation
Jump to: navigation, search

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

Properties

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

Description

Embarcadero Technologies does not currently have any additional information. Please help us document this topic by using the Discussion page!