Vcl.StdCtrls.TCustomEdit.SetSelStart

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure SetSelStart(Value: Integer); virtual;

C++

virtual void __fastcall SetSelStart(int Value);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.StdCtrls.pas
Vcl.StdCtrls.hpp
Vcl.StdCtrls TCustomEdit

Description

Sets the SelStart property.

SetSelStart is the property access method for the SelStart property. It is exposed as a protected method so that descendants of TCustomEdit can customize the implementation of the SelStart property.

SetSelLength sends an EM_SETSEL message to the window of the edit control to position the cursor on the position indicated by Value.

See Also