Interface ActiveXControlListener
public interface ActiveXControlListener extends java.util.EventListener
{
// Methods
public void controlCreated(Object target);
}
This interface provides a method that notifies an object after a Microsoft® ActiveX® control has been created. After the control has been created, it is safe to call methods on the ActiveX control.
EventListener
|
+--ActiveXControlListener
public void controlCreated(Object target);
Notifies an object after an ActiveX control has been created. After such notification, it is safe to call methods on the ActiveX control.
Return Value:
No return value.
Parameter | Description |
target
| The ActiveX control that was created.
|