FMX.Controls.TControl.Locked

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Locked: Boolean read FLocked write SetLocked default False;

C++

__property bool Locked = {read=FLocked, write=SetLocked, default=0};

Properties

Type Visibility Source Unit Parent
property public
FMX.Controls.pas
FMX.Controls.hpp
FMX.Controls TControl

Description

Specifies whether the control is locked at design time.

A locked control prohibits to move the control at design time, all the other properties can be modified at design time.

To lock the control, set Locked to True.

By default, Locked is False, and the control can be modified at design time.

See Also