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

interface XContextMenuInterception

Methods' Summary
registerContextMenuInterceptor registers an XContextMenuInterceptor, which will become the first interceptor in the chain of registered interceptors.  
releaseContextMenuInterceptor removes an XContextMenuInterceptor which was previously registered using XContextMenuInterception::registerContextMenuInterceptor().  
Methods' Details
registerContextMenuInterceptor
void
registerContextMenuInterceptor( [in] XContextMenuInterceptor  Interceptor );

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

Description
removes an XContextMenuInterceptor which was previously registered using XContextMenuInterception::registerContextMenuInterceptor().

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

Top of Page