|
|
|
SftMask.Change Event |
The control contents are changing.
Syntax
VB.NET |
Private Sub object_Change(ByVal sender As Object, ByVal e As EventArgumentType) Handles object.Change |
||
VB |
Private Sub object_Change() |
||
C#.NET |
void object_Change(object sender, EventArgumentType e); |
||
VC++ |
void OnChangeobject(); |
||
C |
HRESULT OnChangeobject(); |
||
Delphi |
procedure objectChange(Sender: TObject); |
object
A SftMask object.
Comments
The Change event occurs when the control contents are changing.
This event occurs whenever the controls contents (Text property) are changing. Only changes caused by the user will generate this event. Changes caused by the application, through properties and methods, will not generate this event.
In addition to the Change event, the UpDownHandled event occurs when the control contents have been modified using the up/down button.