FMX.Forms.TCommonCustomForm.ClientWidth

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ClientWidth: Integer read GetClientWidth write SetClientWidth;

C++

__property int ClientWidth = {read=GetClientWidth, write=SetClientWidth, nodefault};

Properties

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

Description

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

Use ClientWidth to determine the width (in pixels) of the form's client area. The client area is the usable area inside the form's border. Set ClientWidth to change the width of the form's window based on the desired client area. To change the width of the form's window based on the total size of the window (including the border, status bar, and so on), use the Width property instead.

See Also