interface XCurrentContext in module com::sun::star::uno::

(Global Index)

Syntax

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

Description

Task local execution context for UNO. Arbitrary values can be retrieved from the context. Use UNO runtime functions to obtain the current context in your language.

Method Summary

getValueByName Gets a value from the context. You should carefully use the obtained value, because the current context (value container) lives only for the running task (i.e., often the executing thread) only!

Method Details



getValueByName

Syntax

any getValueByName (
string Name );

Description

Gets a value from the context. You should carefully use the obtained value, because the current context (value container) lives only for the running task (i.e., often the executing thread) only!

Parameter Name

name of value

Returns

value
Top of Page