|
|
|
SftBoxEdit.SetSelection Method |
Sets the starting and ending positions of the current selection in the edit control portion.
Syntax
VB.NET |
object.SetSelection(ByVal iStart As Integer, ByVal iEnd As Integer) |
||
VB |
object.SetSelection(ByVal iStart As Long, ByVal iEnd As Long) |
||
C#.NET |
void object.SetSelection(int iStart, int iEnd); |
||
VC++ |
HRESULT object->SetSelection(long iStart, long iEnd); |
||
C |
HRESULT object->raw_SetSelection(long iStart, long iEnd); |
||
Delphi |
procedure object.SetSelection(iStart : Integer, iEnd : Integer); |
object
A SftBoxEdit object.
iStart
The zero-based index of the first character where the selection is to start. If iStart is 0 and iEnd is -1, all the text in the edit control portion is selected. If iStart is -1, any current selection is removed.
iEnd
The zero-based index of the last character before which the selection is to end. If iStart is 0 and iEnd is -1, all the text in the edit control portion is selected.
Comments
The SetSelection method sets the starting and ending positions of the current selection in the edit control portion.
The text of the current selection in the edit control portion can be defined using the Edit.SelText property.