<< Click to Display Table of Contents >> AfterControlEnter - Java |
[GUI version only, Interactive Edition and above]
A Control received the focus.
Normally, this event is sent if the user presses the Tab or Backtab key, or clicks with the mouse onto a control. This event can be used to re-format the content of a control.
public void AfterControlEnter(
VPEObjectEvent e
)
VPEObjectEvent e
The VPE object event is defined as:
public class VPEObjectEvent extends java.util.EventObject{
private TVPEObject VpeObject;
public TVPEObject getVpeObject() {
return VpeObject;
}
public VPEObjectEvent(VpeControl source, TVPEObject VpeObject) {
super(source);
this.VpeObject = VpeObject;
}
}
VpeObject is the VPE object that fired the event