:: com :: sun :: star :: document ::

interface XInteractionFilterSelect
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-::com::sun::star::task::XInteractionContinuation
    |
    +-XInteractionFilterSelect
Description
continuation used by interaction mechanism at filter detection during loading documents

If during loading time the filter can't be detected and wasn't given at calling time, a possible ::com::sun::star::task::InteractionHandler will be used. (it's a a part of used MediaDescriptor ) A NoSuchFilterRequest will be used then to start right interaction on that to get a decision wich filter should be used for given URL. A possible continiuation of that can be this XInteractionFilterSelect. It will transport the decision back to generic filter detection and force using of it. Of course it's possible to abort the loading process by use another continuation ::com::sun::star::task::XInteractionAbort .

See also
MediaDescriptor
See also
::com::sun::star::task::InteractionHandler
See also
NoSuchFilterRequest
See also
::com::sun::star::task::XInteractionAbort

Methods' Summary
setFilter used by interaction to set selected filter
getFilter used by detection to get selected filter
Methods' Details
setFilter
void
setFilter(
 
[in] string
 
Name );

Description
used by interaction to set selected filter

This value must be save till another one will be set and must be provided on getFilter() for interest users.

getFilter
string
getFilter();
 
 

Description
used by detection to get selected filter
Top of Page