TextField.TextChanged Event

This event is fired when the text changes in the TextField. The ActionEventArgs object can be queried to get to know if event originated from user or from code.

TextChanged(
   sender as Object,
   e as ActionEventArgs) as void

Parameters

sender
The sender which is always the TextField.
e
ActionEventArgs which can be queried to ask if event originated from user or from code.

Returns

void

Remarks

See Also

TextField Control