API:Vcl.Grids.TInplaceEdit.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.Grids.pas
Vcl.Grids.hpp
Vcl.Grids TInplaceEdit

Description

Initializes a window-creation parameter record passed in the Params parameter.

Vcl.Grids.TInplaceEdit.CreateParams inherits from Vcl.StdCtrls.TCustomEdit.CreateParams. All content below this line refers to Vcl.StdCtrls.TCustomEdit.CreateParams.

Initializes a window-creation parameter record passed in the Params parameter.

The CreateWnd method calls CreateParams to initialize the parameters it passes to CreateWindowHandle. TCustomEdit overrides the inherited method to specify a scrollable single-line edit control that reflects the current values of the BorderStyle, HideSelection, PasswordChar, and ReadOnly properties.

See Also