:: com :: sun :: star :: ui ::

interface XContextMenuInterception
Base Interfaces
::com::sun::star::uno::XInterface
  |  
  +--XContextMenuInterception
::com::sun::star::uno::XInterface
(referenced interface's summary:)
base interface of all UNO interfaces
Description
This interface enables an object to get interceptors registered that change context menue or prevent them from beeing executed.
Developers Guide
Methods' Summary
registerContextMenuInterceptor registers an ::com::sun::star::ui::XContextMenuInterceptor , which will become the first interceptor in the chain of registered interceptors.  
releaseContextMenuInterceptor removes an ::com::sun::star::ui::XContextMenuInterceptor which was previously registered using ::com::sun::star::ui::XContextMenuInterception::registerContextMenuInterceptor .  
Methods' Details
registerContextMenuInterceptor
void
registerContextMenuInterceptor( [in] ::com::sun::star::ui::XContextMenuInterceptor  Interceptor );

Description
registers an ::com::sun::star::ui::XContextMenuInterceptor , which will become the first interceptor in the chain of registered interceptors.
releaseContextMenuInterceptor
void
releaseContextMenuInterceptor( [in] ::com::sun::star::ui::XContextMenuInterceptor  Interceptor );

Description
removes an ::com::sun::star::ui::XContextMenuInterceptor which was previously registered using ::com::sun::star::ui::XContextMenuInterception::registerContextMenuInterceptor .

The order of removals is arbitrary. It is not necessary to remove the last registered interceptor first.

Top of Page