impiouz
impiouz

Reputation: 90

Check if edit is currently displayed in a Delphi VCL TListView

When you call EditCaption on a TListItem, there is a Edit appearing on it's ListView allowing the user to change the text in the first column of the ListItem.

Is it possible to programmatically check if there's currently such an edit displayed somewhere on a Listview or not?

Upvotes: 1

Views: 204

Answers (1)

Victoria
Victoria

Reputation: 7912

You can determine whether the list view is being edited by the IsEditing method.

Upvotes: 3

Related Questions