FMX.Forms.TForm.BorderIcons

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property BorderIcons: TBorderIcons read FBorderIcons write SetBorderIcons default 7;

C++

__property BorderIcons = {default=7};

Properties

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

Description

Specifies which icons appear on the title bar of the form.

FMX.Forms.TForm.BorderIcons inherits from FMX.Forms.TCommonCustomForm.BorderIcons. All content below this line refers to FMX.Forms.TCommonCustomForm.BorderIcons.

Specifies which icons appear on the title bar of the form.

Use BorderIcons to get or set the icons that appear on the title bar of the form. BorderIcons can include any of the following TBorderIcons values:

Value Meaning

biSystemMenu

The form has a Control menu (also known as a System menu).

biMinimize

The form has a Minimize button.

biMaximize

The form has a Maximize button.

biHelp

Has no effect in FireMonkey.


See Also