Lines Matching refs:xShape
58 XShape xShape = createShape(xDrawDoc, aPos, aSize, sShapeType); in createAndInsertShape() local
59 xShapes.add(xShape); in createAndInsertShape()
61 XPropertySet.class, xShape); in createAndInsertShape()
70 XShape xShape = null; in createShape() local
74 xShape = (XShape) UnoRuntime.queryInterface(XShape.class, xObj); in createShape()
75 xShape.setPosition(aPos); in createShape()
76 xShape.setSize(aSize); in createShape()
77 return xShape; in createShape()
85 public static XPropertySet addPortion(XShape xShape, String sText, in addPortion() argument
88 XText xText = (XText) UnoRuntime.queryInterface(XText.class, xShape); in addPortion()
110 …public static XPropertySet getPortion(XShape xShape, int index) throws NoSuchElementException, Wra… in getPortion() argument
111 …ess m_paraAccess = (XEnumerationAccess)UnoRuntime.queryInterface(XEnumerationAccess.class, xShape); in getPortion()
137 public static String getPortion(XShape xShape) { in getPortion() argument
139 XText xText = (XText) UnoRuntime.queryInterface(XText.class, xShape); in getPortion()
203 XShape xShape = (XShape) UnoRuntime.queryInterface(XShape.class, xShapes.getByIndex(shapeIndex)); in removeOneShape() local
204 xShapes.remove(xShape); in removeOneShape()