interface XFrames in module com::sun::star::frame::

(Global Index)

Syntax

interface XFrames : 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

Method Summary

append appends the specified Frame to the list of sub-frames.

queryFrames

remove removes the frame from its container.

Known Services Which Export this Interface

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

Method Details



append

Syntax

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

Description

appends the specified Frame to the list of sub-frames.


queryFrames

Syntax

sequence< com::sun::star::frame::XFrame > queryFrames (
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

Syntax

void remove (
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