Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

com :: sun :: star :: awt ::

interface XVclContainerListener

Base Interface
com::sun::star::lang::XEventListener

[ DEPRECATED ]
Description
makes it possible to receive container events.

Container events are provided only for notification purposes. The VCL will automatically handle add and remove operations internally.



Methods' Summary

windowAdded gets invoked when a component has been added to the container.
windowRemoved gets invoked when a component has been removed from the container.

Methods' Details

windowAdded
 
[ oneway ] void
windowAdded(
[ in ] com::sun::star::awt::VclContainerEvent e );

Description
gets invoked when a component has been added to the container.
windowRemoved
 
[ oneway ] void
windowRemoved(
[ in ] com::sun::star::awt::VclContainerEvent e );

Description
gets invoked when a component has been removed from the container.

Top of Page