Vcl.ComCtrls.TCustomStatusBar.Panels

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Panels: TStatusPanels read FPanels write SetPanels;

C++

__property TStatusPanels* Panels = {read=FPanels, write=SetPanels};

Properties

Type Visibility Source Unit Parent
property public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TCustomStatusBar

Description

Lists the panels (TStatusPanel objects) in the status bar.

The Panels property holds a TStatusPanels, that is, a collection of TStatusPanel objects. At design time, you can add, remove, or modify panels with the Panels editor. To open the Panels editor, select the Panels property in the Object Inspector, then double-click in the Value column to the right or click the ellipsis (...) button.

At design time, you can add, remove, or modify panels with the Panels editor:

  • To open the Panels editor from the the Object Inspector, select the Panels property and either double-click in the Value column to the right or click the ellipsis (...) button.
  • To open the Panels editor from the Form Designer, right-click TStatusBar and select Panels editor from the context menu.

See Also

Code Examples