FMX.Memo.Style.TEditAction

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TEditAction = record

C++

struct DECLSPEC_DRECORD TEditAction
{
public:
    Fmx::Memo::Types::TActionType ActionType;
    bool PairedWithPrev;
    int StartPosition;
    System::UnicodeString DeletedFragment;
    int Length;
    bool Typed;
    bool WasSelected;
    bool CaretMoved;
};

Properties

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

Description

Style.TEditAction describes an insert or a delete operation.

Use Style.TEditAction to describe an insert or a delete operation.

Style.TEditAction objects contain information, like ActionType or StartPosition, that is needed by Style.TEditActionStack so that it can back down an operation.

See Also