Vcl.Controls.TControl.ClientHeight

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ClientHeight: Integer read GetClientHeight write SetClientHeight stored False;

C++

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

Properties

Type Visibility Source Unit Parent
property public
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls TControl

Description

Specifies the height of the control's client area in pixels.

Use ClientHeight to read or change the height of the control's client area.

For TControl, ClientHeight is the same as Height. Derived classes may implement a ClientHeight property that differs from Height. For example, the ClientHeight of a form is the value of the Height property minus the height of the title bar, resize border, and scroll bars.

See Also

Code Examples