struct WindowEvent in module com::sun::star::awt::

(Global Index)

Syntax

struct WindowEvent : com::sun::star::lang::EventObject ;

Description

specifies the component-level keyboard event.

See also

InputEvent

Field Summary

X specifies the outer X-position of the window.

Y specifies the outer Y-position of the window.

Width specifies the outer (total) width of the window.

Height specifies the outer (total) height of the window.

LeftInset specifies the inset from the left.

TopInset specifies the inset from the top.

RightInset specifies the inset from the right.

BottomInset specifies the inset from the bottom.

Field Details



X

Syntax

long X;

Description

specifies the outer X-position of the window.


Y

Syntax

long Y;

Description

specifies the outer Y-position of the window.


Width

Syntax

long Width;

Description

specifies the outer (total) width of the window.


Height

Syntax

long Height;

Description

specifies the outer (total) height of the window.


LeftInset

Syntax

long LeftInset;

Description

specifies the inset from the left.

The inset is the distance between the outer and the inner window, with other words in this case it is the width of the left border.


TopInset

Syntax

long TopInset;

Description

specifies the inset from the top.

The inset is the distance between the outer and the inner window, with other words in this case it is the heigt of the top border.


RightInset

Syntax

long RightInset;

Description

specifies the inset from the right.

The inset is the distance between the outer and the inner window, with other words in this case it is the width of the right border.


BottomInset

Syntax

long BottomInset;

Description

specifies the inset from the bottom.

The inset is the distance between the outer and the inner window, with other words in this case it is the heigt of the bottom border.

Top of Page