FMX.Memo.Types.TDeleteOption

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TDeleteOption = (MoveCaret, CanUndo, Selected);

C++

enum class DECLSPEC_DENUM TDeleteOption : unsigned char { MoveCaret, CanUndo, Selected };

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 delete options.

Types.TDeleteOption enumerates a number of possible delete options for a TMemo control.

The following table lists the values of Types.TDeleteOption:

Name Description
MoveCaret Moves the caret at the position of the first deleted character.
CanUndo Specifies whether the delete operation can be undone.

Types.TDeleteOption is used by the FMX.Memo.TCustomMemo.DeleteFrom method.


See Also