interface XShapeGroup in module com::sun::star::drawing::

(Global Index)

[ DEPRECATED ]

Syntax

interface XShapeGroup : com::sun::star::drawing::XShape ;

Description

is implemented by Shape s that contain other Shape s.

Method Summary

enterGroup enters the group which enables the editing function for the parts of a grouped Shape . Then the parts can be edited instead of the group as a whole.

leaveGroup leaves the group, which disables the editing function for the parts of a grouped Shape . Then only the group as a whole can be edited.

Known Services Which Export this Interface

com::sun::star::drawing::GroupShape

Method Details



enterGroup

Syntax

void enterGroup ();

Description

enters the group which enables the editing function for the parts of a grouped Shape . Then the parts can be edited instead of the group as a whole.

This affects only the user interface. The behavior is not specified if this instance is not visible on any view. In this case it may or may not work.


leaveGroup

Syntax

void leaveGroup ();

Description

leaves the group, which disables the editing function for the parts of a grouped Shape . Then only the group as a whole can be edited.

This affects only the user interface. The behavior is not specified if this instance is not visible on any view. In this case it may or may not work.

Top of Page