Vcl.ComCtrls.TListItem.Owner

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Owner: TListItems read FOwner;

C++

__property TListItems* Owner = {read=FOwner};

Properties

Type Visibility Source Unit Parent
property public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TListItem

Description

Specifies the TListItems object that owns the list item.

Use Owner to access the TListItems object that manages all the list items for the list view. Use the methods of the Owner object to temporarily prevent updates to the image of the list item while it is changed or to add or delete list items.

Do not confuse the Owner property with the list view control that displays the item. The ListView property specifies the list view control that owns the TListItems object.

See Also