AfterControlExit - .NET

<< Click to Display Table of Contents >>

Navigation:  Events Generated by the .NET Control >

AfterControlExit - .NET

Previous pageReturn to chapter overviewNext page

[Not supported by VpeWebControl, Interactive Edition and above]

The currently focused Control lost the focus.

Normally, this event is sent if the user presses the Tab or Backtab key, or clicks with the mouse onto another control. When receiving this message, it is possible for you to force the focus to be set explicitly to a specific control by calling SetFocusControlByName() or SetFocus(). It is also possible to enable and disable other controls of the current form while processing this event.

In addition this event can be used to re-format the content of a control.

VPEObjectEventHandler VPE.AfterControlExit(

object sender,

VPEObjectEventArgs e

)

object sender

the VPE document object that fired the event

VPEObjectEventArgs e

event data, derived from EventArgs, one additional member:

public class VPEObjectEventArgs : EventArgs

{

public TVPEObject VpeObject;

// the VPE object that fired the event

}

 

See also:

Interactive Documents