IListView.ReadOnly

Syntax

ReadOnly: Boolean;

None;

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.

To determine whether changes can be made to list elements text in Fore.NET, see description of the ListView.LabelEdit property in MSDN.

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;

Not provisioned.

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

See also:

IListView