Fired when the user types a character in edit mode.
Parameters
Parameter | Description |
---|---|
Cell | Cell currently being edited |
Char | The character entered by the user |
Text | The current contents including the new char |
Remarks
The OnChar event is fired everytime the user enters a character into a cell in edit mode. Use this event when you need to perform real time update logic, such as enabling and disabling of controls based on the cell's current contents.
This is not a replacement for BeforeUpdate or AfterUpdate, which fire only if the user commits his/her changes.