Vcl.Forms.TCustomForm.ClientHandle

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ClientHandle: HWND read FClientHandle;

C++

__property HWND ClientHandle = {read=FClientHandle, nodefault};

Properties

Type Visibility Source Unit Parent
property protected
Vcl.Forms.pas
Vcl.Forms.hpp
Vcl.Forms TCustomForm

Description

Provides access to the handle of the form's internal MDI client window.

Use ClientHandle to get the handle for the form's internal MDI client window.

ClientHandle is meaningful only if the form is an MDI parent (that is, if the form's FormStyle property is set to fsMDIForm).

Note: Use the Handle property instead to get the handle to the form window itself.

See Also


Code Examples