[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] Reference for unit 'Forms' (#lcl)

TCustomForm.ShowInTaskBar

Indicates if the form should be displayed on the system Task Bar.

Declaration

Source position: forms.pp line 827

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

Description

ShowInTaskBar is a TShowInTaskbar property which indicates whether the form instance should be displayed as an icon on the system task bar. The default value for the property is stDefault, and indicates the default behavior for the application, 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 (realized) visibility for the form on the system task bar. For example, the value may be changed when it conflicts with the value in TaskBarBehavior.

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 value is posted to the widgetset class. Actions performed in the widget are platform-specific, and may include:

In short, ShowInTaskBar is the requested visibility on the task bar. EffectiveShowInTaskBar is the visibility as determined by the Application and the widgetset / platform at run-time. stDefault is the value which enables use of the platform rules. Any given value assigned to either ShowInTaskBar or in Application.TaskBarBehavior can be overridden at run-time based on the capabilities for the widgetset or the display manager.

Remark: For the macOS Carbon widgetset, ShowInTaskBar is not supported.

See also

TCustomForm.EffectiveShowInTaskBar

  

Value for the ShowInTaskBar property when resolved using the Application settings.

Application

  

The TApplication singleton.

TApplication.TaskBarBehavior

  

Indicates how forms are represented in the task bar.

TShowInTaskbar

  

Identifies the display preference for a form on the TaskBar.


Version 3.2 Generated 2024-02-25 Home