interface XEventListener in module com::sun::star::lang::

(Global Index)

Syntax

interface XEventListener : com::sun::star::uno::XInterface ;

Description

This is a tagging interface that all event listener interfaces must extend.

Method Summary

disposing gets called when the broadcaster is about to be disposed.

Method Details



disposing

Syntax

void disposing (
com::sun::star::lang::EventObject Source );

Description

gets called when the broadcaster is about to be disposed.

All listeners and all other objects which reference the broadcaster should release the references.

Top of Page