FMX.Memo.Types.TInsertOption

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TInsertOption = (Selected, MoveCaret, CanUndo, UndoPairedWithPrev, Typed);

C++

enum class DECLSPEC_DENUM TInsertOption : unsigned char { Selected, MoveCaret, CanUndo, UndoPairedWithPrev, Typed };

Properties

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

Description

Represents an enumeration of insert options.

Types.TInsertOption enumerates a number of possible insert options for a TMemo control.

The following table lists the values of Types.TInsertOption:

Name Description
Selected Applies a selection effect for the inserted text.
MoveCaret Moves the caret at the position of the last inserted character.
CanUndo Specifies whether the delete operation can be undone.
UndoPairedWithPrev Specifies whether the current insert operation is paired with the previous one.

Types.TInsertOption is used by the FMX.Memo.TCustomMemo.InsertAfter method.

See Also