Unit 'Forms' Package
[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] [#lcl]

TCustomForm.ShowInTaskBar

How the form is represented in the system Task Bar.

Declaration

Source position: forms.pp line 750

public property TCustomForm.ShowInTaskBar : TShowInTaskbar
  read FShowInTaskbar
  write SetShowInTaskBar
  default stDefault;

Description

ShowInTaskBar is a TShowInTaskbar property which indicates how the form is represented on the system task bar. The default value for the property is stDefault, and indicates the default behavior for the widgetset, platform, or operating system is used. See TShowInTaskbar for more information about values in the enumeration and their meanings.

ShowInTaskBar is used in conjunction with the TaskBarBehavior property in the Application singleton to determine the effective visibility for the form on the system task bar. For example: The task bar behavior may require grouping related forms under a single form icon.

Changing the value for the property causes the effective visibility to be recalculated when the form is not hidden, or a MDI child form. The new effective task bar visibility is posted to the widgetset class.

See also

TShowInTaskbar

  

How a form is represented in the TaskBar.

Application

  

The TApplication singleton.

TApplication.TaskBarBehavior

  

Indicates how forms are represented in the task bar.