My module needs to process text entered by the user, so I have code for the case Key_Press event as follows:
Code: Select all
if (object instanceof VoltageKeyPressInfo)
{
VoltageKeyPressInfo kpi = (VoltageKeyPressInfo) object;
if ((kpi.IsEnterKey()) || (kpi.IsTabKey())) // breakpoint here
{
String tVal = editableTestNote1.GetText();j
//...
}
}
Thanks in advance,
Frank