Vcl.ComCtrls.TCustomRichEdit.RequestSize

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure RequestSize(const Rect: TRect); virtual;

C++

virtual void __fastcall RequestSize(const Winapi::Windows::TRect &Rect);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TCustomRichEdit

Description

Resize request event dispatcher.

RequestSize merely calls the OnResizeRequest event handler. RequestSize is exposed as a protected method so that derived classes can change the response to Windows messages about an impending window resize. When overriding RequestSize, include a call to the OnResizeRequest event handler.

See Also