Vcl.Touch.Keyboard.TCustomKeyboardButton.ClientRect

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ClientRect: TRect read GetClientRect;

C++

__property System::Types::TRect ClientRect = {read=GetClientRect};

Properties

Type Visibility Source Unit Parent
property public
Vcl.Touch.Keyboard.pas
Vcl.Touch.Keyboard.hpp
Vcl.Touch.Keyboard TCustomKeyboardButton

Description

Specifies the caption of a TCustomKeyboardButton button.

Read ClientRect to find out the size of the client area of a TCustomKeyboardButton instance. ClientRect returns a TRect object, which is a rectangle with its Top and Left fields set to zero, and its Bottom and Right fields set to the button's Height and Width, respectively. ClientRect is equivalent to Rect(0, 0, Width, Height).

Note: ClientRect is a read-only property.

See Also