Lines Matching refs:xPropSet
95 XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( in testShapeLineStyle() local
97 xPropSet.setPropertyValue("LineStyle", LineStyle.DASH); in testShapeLineStyle()
104 xPropSet.setPropertyValue("LineDash", aLineDash); in testShapeLineStyle()
108 xPropSet = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, xShape); in testShapeLineStyle()
110 assertEquals("Not Dash Line Style",LineStyle.DASH,xPropSet.getPropertyValue("LineStyle")); in testShapeLineStyle()
111 aLineDash=(LineDash) xPropSet.getPropertyValue("LineDash"); in testShapeLineStyle()
128 XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( in testShapeLineColor() local
130 xPropSet.setPropertyValue("LineStyle", LineStyle.DASH); in testShapeLineColor()
131 xPropSet.setPropertyValue("LineColor", 0x00ff00); in testShapeLineColor()
133 xPropSet = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, xShape); in testShapeLineColor()
135 assertEquals("Not Dash Line Style",LineStyle.DASH,xPropSet.getPropertyValue("LineStyle")); in testShapeLineColor()
136 assertEquals("wrong line color", 0x00ff00,xPropSet.getPropertyValue("LineColor")); in testShapeLineColor()