Vcl.StdCtrls.TCustomEdit.GetSelStart

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetSelStart: Integer; virtual;

C++

virtual int __fastcall GetSelStart();

Properties

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

Description

Returns the SelStart property.

GetSelStart 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.

GetSelStart sends an EM_GETSEL message to the window of the edit control and returns the starting position.

See Also