pict.getAnyAndAny().add( shapetypeWrapped);
shapetype.setInsetmode(org.docx4j.vml.officedrawing.STInsetMode.CUSTOM);
shapetype.setSpt( new Float(202.0) );
shapetype.setConnectortype(org.docx4j.vml.officedrawing.STConnectorType.STRAIGHT);
// Create object for stroke (wrapped in JAXBElement)
CTStroke stroke = vmlObjectFactory.createCTStroke();
JAXBElement<org.docx4j.vml.CTStroke> strokeWrapped = vmlObjectFactory.createStroke(stroke);
shapetype.getEGShapeElements().add( strokeWrapped);
stroke.setJoinstyle(org.docx4j.vml.STStrokeJoinStyle.MITER);
// Create object for path (wrapped in JAXBElement)
CTPath path = vmlObjectFactory.createCTPath();
JAXBElement<org.docx4j.vml.CTPath> pathWrapped = vmlObjectFactory.createPath(path);
shapetype.getEGShapeElements().add( pathWrapped);
path.setGradientshapeok(org.docx4j.vml.STTrueFalse.T);