Vcl.Forms.TForm.ShowInTaskBar

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ShowInTaskBar default False;

C++

__property ShowInTaskBar = {default=0};

Properties

Type Visibility Source Unit Parent
property published
Vcl.Forms.pas
Vcl.Forms.hpp
Vcl.Forms TForm

Description

Controls a form thumbnail on the taskbar.

When ShowInTaskBar is set to True the form has a thumbnail on the taskbar. This will enable minimizing and restoring it from this thumbnail, independently from the main form status.

If a form is Application.MainForm, then Application.MainFormOnTaskBar and ShowInTaskBar properties are synchronized. Setting ShowInTaskBar property in the main form will update the Application.MainFormOnTaskBar property. Or setting Application.MainFormOnTaskBar will update ShowInTaskBar of the main form.

Notice that you can set this property at runtime but should generally use it as the initial value.


See Also