Vcl.ComCtrls.TCustomListView.CreateParams

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure CreateParams(var Params: TCreateParams); override;

C++

virtual void __fastcall CreateParams(Vcl::Controls::TCreateParams &Params);

Properties

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

Description

Initializes the window-creation parameter record.

CreateParams is called automatically to initialize the window-creation parameters when the list view needs to create its window. CreateParams overrides the inherited method to specify a list view window that implements the property settings of the list view control.

When overriding the CreateParams method, be sure to call the inherited method before changing any of the values in the Params parameter.

See Also