FMX.Grid.TCustomGrid.ReadOnly

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ReadOnly: Boolean read GetReadOnly write SetReadOnly stored False;

C++

__property bool ReadOnly = {read=GetReadOnly, write=SetReadOnly, stored=false, nodefault};

Properties

Type Visibility Source Unit Parent
property public
FMX.Grid.pas
FMX.Grid.hpp
FMX.Grid TCustomGrid

Description

Specifies whether the cells in this grid can be modified or not.

Use ReadOnly at run time to determine whether the cells in this grid can be edited. If ReadOnly is True, then you can only read and view the contents of the cells without the ability to affect the grid in any way.

See Also