API:FMX.Memo.Types.TFragmentDeleted

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TFragmentDeleted = record
    StartPos: Integer;
    Fragment: string;
    Selected: Boolean;
    CaretMoved: Boolean;
  public
    class function Create(const StartPos: Integer; const Fragment: string;
      const Selected, CaretMoved: Boolean): TFragmentDeleted; static; inline;
  end;

C++

struct DECLSPEC_DRECORD TFragmentDeleted
{
public:
    int StartPos;
    System::UnicodeString Fragment;
    bool Selected;
    bool CaretMoved;
    static TFragmentDeleted __fastcall Create(const int StartPos, const System::UnicodeString Fragment, const bool Selected, const bool CaretMoved);
};

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!