Vcl.Forms.TCustomForm.ClientHeight
Delphi
property ClientHeight: Integer read GetClientHeight write SetClientHeight stored IsClientSizeStored;
C++
__property ClientHeight = {write=SetClientHeight, stored=IsClientSizeStored};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | protected | Vcl.Forms.pas Vcl.Forms.hpp |
Vcl.Forms | TCustomForm |
Description
Specifies the height of the control's client area in pixels.
Vcl.Forms.TCustomForm.ClientHeight inherits from Vcl.Controls.TControl.ClientHeight. All content below this line refers to Vcl.Controls.TControl.ClientHeight.
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