|
|
|
SftBox.EditUpdate Event |
The edit control portion has changed and is about to be redrawn.
Syntax
VB.NET |
Private Sub object_EditUpdate(ByVal sender As Object, ByVal e As EventArgumentType) Handles object.EditUpdate |
||
VB |
Private Sub object_EditUpdate() |
||
C#.NET |
void object_EditUpdate(object sender, EventArgumentType e); |
||
VC++ |
void OnEditUpdateobject(); |
||
C |
HRESULT OnEditUpdateobject(); |
||
Delphi |
procedure objectEditUpdate(Sender: TObject); |
object
A SftBox object.
Comments
The EditUpdate event occurs when the edit control portion has changed and is about to be redrawn.
Modifying the contents or the selected text in the edit control portion using Edit.Text or Edit.SelText should only be attempted if the DropDown.CharSearchMode property is set to charSearchModeSftBoxManual or charSearchModeSftBoxNone. When changing the contents, additional EditChange and EditUpdate events can occur.
The EditChange event occurs after the EditUpdate event.