Vcl.Dialogs.TCommonDialog.DefaultHandler

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DefaultHandler(var Message); override;

C++

virtual void __fastcall DefaultHandler(void *Message);

Properties

Type Visibility Source Unit Parent
procedure
function
public
Vcl.Dialogs.pas
Vcl.Dialogs.hpp
Vcl.Dialogs TCommonDialog

Description

Sends unhandled messages to Windows for processing.

DefaultHandler is called by Dispatch when it cannot find a method for a particular message. DefaultHandler sends these messages to the dialog's window procedure, where they are handled by Windows.

See Also