shear shear angle Nicole Scholz How can I set the shearangle of a shape?

In this example the shear angle of a shape is set.

/* Retrieve the Desktop object, we need its XComponentLoader interface to load a new document*/ oDesktop = UNO.createDesktop() -- get the UNO Desktop service object xComponentLoader = oDesktop~{%see com.sun.star.frame.XDesktop%XDesktop}~{%see com.sun.star.frame.XComponentLoader%XComponentLoader} -- get componentLoader interface /* open the blank file */ url = "private:factory/sdraw" xDrawComponent = xComponentLoader~loadComponentFromURL(url, "_blank", 0, - .UNO~noProps) /* need document's factory to be able to insert created objects*/ xDocumentFactory = xDrawComponent~{%see com.sun.star.lang.XMultiServiceFactory%XMultiServiceFactory} /* get draw page by index */ xDrawPage = xDrawComponent~{%see com.sun.star.drawing.XDrawPagesSupplier%XDrawPagesSupplier}~getDrawPages~getByIndex(0)~{%see com.sun.star.drawing.XDrawPage%XDrawPage} /* draw a rectangle */ xrectangle = xDocumentFactory~createInstance("{%see com.sun.star.drawing.RectangleShape}")~{%see com.sun.star.drawing.XShape%xshape} xrectangle~setPosition(.bsf~new("{%see com.sun.star.awt.Point}", 8000, 1000)) xrectangle~setSize(.bsf~new("{%see com.sun.star.awt.Size}", 5000, 5000)) xDrawPage~add(xrectangle) -- adds the rectangle to the draw document /* colour the rectangle dark green solid */ xShapeProps = xrectangle~{%see com.sun.star.beans.XPropertySet%XPropertySet} xShapeProps~setPropertyValue("FillColor", box("int", "458B74"x ~c2d)) -- set fill colour dark green /* draw a rectangle */ xrectangle1 = xDocumentFactory~createInstance("{%see com.sun.star.drawing.RectangleShape}")~{%see com.sun.star.drawing.XShape%xshape} xrectangle1~setPosition(.bsf~new("{%see com.sun.star.awt.Point}", 9000, 10000)) xrectangle1~setSize(.bsf~new("{%see com.sun.star.awt.Size}", 2500, 2500)) xDrawPage~add(xrectangle1) -- adds the rectangle to the draw document /* colour the rectangle dark green solid */ xShapeProps1 = xrectangle1~{%see com.sun.star.beans.XPropertySet%XPropertySet} xShapeProps1~setPropertyValue("FillColor", box("int", "458B74"x ~c2d)) -- set fill colour dark green /* The shape is sheared counter-clockwise around the center of the bounding box */ call syssleep 1 xShapeProps~setPropertyValue("ShearAngle", box("int", 2000)) call syssleep 1 xShapeProps1~setPropertyValue("ShearAngle", box("int", 10000)) ::requires UNO.cls -- get UNO support