Vcl.ComCtrls.TCustomTabControl.Images

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Images: TCustomImageList read FImages write SetImages;

C++

__property Vcl::Imglist::TCustomImageList* Images = {read=FImages, write=SetImages};

Properties

Type Visibility Source Unit Parent
property protected
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TCustomTabControl

Description

Specifies the images drawn in tabs.

Images specifies the images that are drawn in tabs. For disabled tabs, grayed versions of the images are used.

In the implementation of TCustomTabControl, the order of images in image list properties directly corresponds to the associated tabs in the control. In the descendant class, TPageControl, this behavior is replaced by support for individual TTabSheet objects, each with an ImageIndex property. In any case, the application programmer can define customized image displays by defining an OnGetImageIndex event handler.

See Also