System.Win.TaskbarCore.TTaskbarBase.TabProperties

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property TabProperties: TThumbTabProperties read FTabProperties write SetTabProperties;

C++

__property TThumbTabProperties TabProperties = {read=FTabProperties, write=SetTabProperties, nodefault};

Properties

Type Visibility Source Unit Parent
property public
System.Win.TaskbarCore.pas
System.Win.TaskbarCore.hpp
System.Win.TaskbarCore TTaskbarBase

Description

Specifies how are the multiple tabs (forms) displayed in the task bar.

TabProperties specifies how the taskbar buttons and previews are displayed for multiple tabs.

Value Meaning

AppThumbAlways

Thumbnail displays the preview for the main window of the application.

AppThumbWhenActive

Thumbnail displays the preview for the main window of the application when the form is active, and its own preview when the form is not active.

AppPeekAlways

Thumbnail always displays the preview of the main form of the application.

AppPeekWhenActive

Thumbnail displays the preview of the main form of the application when the form is active, and its own preview when the form is not active.

CustomizedPreview

The form requires a customized preview, so OnThumbPreviewRequest and OnWindowPreviewItemRequest are triggered when the system requires a thumbnail preview or a window preview.

See Also