IListView.ReadOnly

Syntax

ReadOnly: Boolean;

Description

The ReadOnly property determines whether it is possible to make changes in the elements list text.

Comments

Available values:

NOTE. Editing of other interface elements is not denied.

Example

Executing the example requires a form, the Button component named Button1 and the ListView component named ListView1 on the form.

Add a link to the Forms system assembly.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
    ListView1.ReadOnly := 
False;
End Sub Button1OnClick;

After executing the example it is allowed to edit elements text.

See also:

IListView