enum ParamMode in module com::sun::star::reflection::

(Global Index)

Syntax

enum ParamMode;

Description

These values are used to specify if a formal parameter of a method is used for input, output or both.

Values Summary

IN It is an in parameter. Data can only transfered from the callee to the caller.

OUT It is an out parameter. Data can only transfered from the caller to the callee.

INOUT It is an in out parameter. Data can transfered in both directions.

Values Details



IN

Syntax

IN,

Description

It is an in parameter. Data can only transfered from the callee to the caller.


OUT

Syntax

OUT,

Description

It is an out parameter. Data can only transfered from the caller to the callee.


INOUT

Syntax

INOUT,

Description

It is an in out parameter. Data can transfered in both directions.

Top of Page