Vcl.ComCtrls.TCustomStatusBar.SimplePanel
Delphi
property SimplePanel: Boolean read FSimplePanel write SetSimplePanel;
C++
__property bool SimplePanel = {read=FSimplePanel, write=SetSimplePanel, nodefault};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | Vcl.ComCtrls.pas Vcl.ComCtrls.hpp |
Vcl.ComCtrls | TCustomStatusBar |
Description
Determines whether the status bar displays a single panel or multiple panels.
If SimplePanel is set to True, the status bar consists of a single panel displaying the text in SimpleText. If SimplePanel is set to False, the status bar displays a separate panel for each item in its Panels property.
Note: When SimplePanel is False, you cannot use the SimpleText property to display text in the status bar. Instead, you must set the Text property on one of the panel objects.
See Also
Code Examples