FMX.Types.TCustomCaret.ReadOnly

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ReadOnly: boolean read FReadOnly write SetReadOnly;

C++

__property bool ReadOnly = {read=FReadOnly, write=SetReadOnly, nodefault};

Properties

Type Visibility Source Unit Parent
property public
FMX.Types.pas
FMX.Types.hpp
FMX.Types TCustomCaret

Description

Specifies whether the owner of the TCustomCaret object is a read-only control.

Usually the ReadOnly property gets its value from the read-only state of a control containing the TCustomCaret object.

For example, the ReadOnly property value is analyzed to determine whether to show a virtual (on-screen) keyboard when a caret appears in a control. By default, the virtual keyboard is shown when the caret appears in the control. However, if the control is read-only then the virtual keyboard is not shown. Compare with TemporarilyHidden.

See Also