Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

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

interface XFrames

Base Interface
com::sun::star::container::XIndexAccess

Description
manages and creates frames.

Frames may contain other frames (by implementing an XFrames interface) and may be contained in other frames.

See also
XFrame
See also
Frame


Known Services which Export this Interface

com::sun::star::frame::FramesContainer This is a special container which can contain frames.

Methods' Summary

append appends the specified Frame to the list of sub-frames.
queryFrames
remove removes the frame from its container.

Methods' Details

append
 
void
append(
[ in ] com::sun::star::frame::XFrame xFrame );

Description
appends the specified Frame to the list of sub-frames.
queryFrames
 
sequence< com::sun::star::frame::XFrame >
queryFrames(
[ in ] long nSearchFlags );

Returns
all child frames of the container which are intended to be visible to other objects.

The content of the sequence may be limited by the caller through the FrameSearchFlags .

remove
 
void
remove(
[ in ] com::sun::star::frame::XFrame xFrame );

Description
removes the frame from its container.

The method is not called implicitly by this method.

The creator attribute of the frame must be reset by the caller of this method.


Top of Page