:: com :: sun :: star :: frame ::

constants group LayoutManagerEvents
Usage Restrictions
not published
Description
provides information about layout manager events

Events are provided only for notification purposes only.

See also
::com::sun::star::frame::LayoutManager
See also
::com::sun::star::frame::XLayoutManagerEventBroadcaster
Since
OpenOffice 2.0.0

Constants
LOCK specifies that the layout manager processed a lock call, which prevents it from doing layouts.  
UNLOCK specifies that the layout manager processed an unlock call, which admit layouts when the lock count is zero.  
LAYOUT specifies that the layout manager refreshed the layout of the frame.  
Constants' Details
LOCK
const short LOCK = 0;
Description
specifies that the layout manager processed a lock call, which prevents it from doing layouts.

This event sends the current lock count as additional information.

UNLOCK
const short UNLOCK = 1;
Description
specifies that the layout manager processed an unlock call, which admit layouts when the lock count is zero.

This event sends the current lock count as additional information.

LAYOUT
const short LAYOUT = 2;
Description
specifies that the layout manager refreshed the layout of the frame.

This event sends no additional information.

Top of Page