interface XInitialization in module com::sun::star::lang::

(Global Index)

Syntax

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

Description

This is the only interface for initializing an object directly after its creation.

This interface works together with factories. If you want to initialize the object after creation, you must support this interface and you may support other type save interfaces to initialize.

The object must work without an initializing call. In this case it must use a meaningful default.

See also

XProducer

Method Summary

initialize initializes the object.

Method Details



initialize

Syntax

void initialize (
sequence< any > aArguments )
raises ( com::sun::star::uno::Exception );

Description

initializes the object.

It should be called directly after the object is created.

Top of Page