Skip to main content
A newer version of this page is available. .

Create(TComponent,Boolean) Constructor

Creates an instance of the TcxCustomEdit class.

Declaration

constructor Create(AOwner: TComponent; AIsInplace: Boolean); reintroduce; overload; virtual;

Parameters

Name Type
AOwner TComponent
AIsInplace Boolean

Remarks

The constructor creates and initializes an instance of the TcxCustomEdit class. You should never instantiate TcxCustomEdit directly. This class serves as the base class from which other editors descend.

The AOwner parameter specifies the component, which becomes the owner of an editor. It is responsible for destroying the edit control.

The second constructor allows you to create an in-place editor by specifying True as an AIsInplace parameter. An in-place editor can be embedded in another control (a grid control, for instance).

See Also