Vcl.Taskbar.TThumbBarButtonList.Items

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Items[Index: Integer]: TThumbBarButton read GetItem write SetItem; default;

C++

__property TThumbBarButton* Items[int Index] = {read=GetItem, write=SetItem/*, default*/};

Properties

Type Visibility Source Unit Parent
property public
Vcl.Taskbar.pas
Vcl.Taskbar.hpp
Vcl.Taskbar TThumbBarButtonList

Description

Provides access to the TThumbBarButton objects in the TThumbBarButtonList in the Windows task bar.

Use Items to access individual TThumbBarButton in the TThumbBarButtonList collection.

The value of the Index parameter corresponds to the Index property of a collection. It represents the position of the item in the collection. To add objects to the Items array, use the Add method.

Note: A maximum of 7 TThumbBarButton can be displayed in the application Windows task bar.

See Also