interface XVclContainerListener in module com::sun::star::awt::

(Global Index)

[ DEPRECATED ]

Syntax

interface XVclContainerListener : com::sun::star::lang::XEventListener ;

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.

Method 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.

Method Details



windowAdded

Syntax

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

Description

gets invoked when a component has been added to the container.


windowRemoved

Syntax

oneway void windowRemoved (
com::sun::star::awt::VclContainerEvent e );

Description

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

Top of Page