public static void Demo_Group2( XComponent xDrawDoc )
{
try
{
XDrawPage xDrawPage = PageHelper.getDrawPageByIndex( xDrawDoc, 0 );
XShapeGrouper xShapeGrouper = (XShapeGrouper)
UnoRuntime.queryInterface( XShapeGrouper.class, xDrawPage );
XShapes xShapesPage = (XShapes)
UnoRuntime.queryInterface( XShapes.class, xDrawPage );
xShapeGrouper.group( xShapesPage );
}
catch ( Exception ex )
{
System.out.println( "Demo_Group2:" + ex );
}