:: com :: sun :: star :: uno ::

interface XCurrentContext
Description
Task (e.g. thread) local execution context for UNO. Arbitrary values can be retrieved from the context.

You have to use UNO runtime functions to obtain the current context in your target language.

@attention In general, do not spread the current context across different tasks. Values of the current context are destined for that task only.

Methods' Summary
getValueByName Gets a value from the context.  
Methods' Details
getValueByName
any
getValueByName( [in] string  Name );

Description
Gets a value from the context.
Parameter Name
name of value
Returns
value
Top of Page