FMX.Forms.TCommonCustomForm.ClientHeight

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ClientHeight: Integer read GetClientHeight write SetClientHeight;

C++

__property int ClientHeight = {read=GetClientHeight, write=SetClientHeight, nodefault};

Properties

Type Visibility Source Unit Parent
property public
FMX.Forms.pas
FMX.Forms.hpp
FMX.Forms TCommonCustomForm

Description

Specifies the height (in pixels) of the form's client area.

Use ClientHeight to determine the height (in pixels) of the form's client area. The client area is the usable area inside the form's border, excluding the title bar, scroll bars, and so on.

Set ClientHeight to change the height of the form's window based on the desired client area. To change the height of the form's window based on the total size of the window (including the border, menu, status bar and so on), use the Height property instead.

See Also