|
|
|
SftBoxEdit.GetSelection Method |
Returns the starting and ending positions of the current selection in the edit control portion.
Syntax
VB.NET |
object.GetSelection(ByRef iStart As Integer, ByRef iEnd As Integer) |
||
VB |
object.GetSelection(iStart As Long, iEnd As Long) |
||
C#.NET |
void object.GetSelection(out int iStart, out int iEnd); |
||
VC++ |
HRESULT object->GetSelection(long* iStart, long* iEnd); |
||
C |
HRESULT object->raw_GetSelection(long* iStart, long* iEnd); |
||
Delphi |
procedure object.GetSelection(out iStart : Integer, out iEnd : Integer); |
object
A SftBoxEdit object.
iStart
Returns the zero-based index of the first character where the selection starts.
iEnd
Returns the zero-based index of the last character before which the selection ends.
Comments
The GetSelection method returns the starting and ending positions of the current selection in the edit control portion.
The Edit.GetSelectionV method is used with Internet Explorer/VBScript.
The text of the current selection in the edit control portion can be retrieved using the Edit.SelText property.