Lines Matching refs:xPropSet
116 XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( in testFillGradient() local
118 xPropSet.setPropertyValue("FillStyle", FillStyle.GRADIENT); in testFillGradient()
130 xPropSet.setPropertyValue("FillGradient", aGradient); in testFillGradient()
133 xPropSet = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, in testFillGradient()
137 xPropSet.getPropertyValue("FillStyle")); in testFillGradient()
138 aGradient = (Gradient) xPropSet.getPropertyValue("FillGradient"); in testFillGradient()
156 XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( in testFillColor() local
158 xPropSet.setPropertyValue("FillStyle", FillStyle.SOLID); in testFillColor()
159 xPropSet.setPropertyValue("FillColor", 0xffff00); in testFillColor()
162 xPropSet = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, in testFillColor()
166 xPropSet.getPropertyValue("FillStyle")); in testFillColor()
168 xPropSet.getPropertyValue("FillColor")); in testFillColor()
184 XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface( in testFillHatch() local
186 xPropSet.setPropertyValue("FillStyle", FillStyle.HATCH); in testFillHatch()
192 xPropSet.setPropertyValue("FillHatch", aHatch); in testFillHatch()
196 xPropSet = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, in testFillHatch()
200 xPropSet.getPropertyValue("FillStyle")); in testFillHatch()
201 aHatch = (Hatch) xPropSet.getPropertyValue("FillHatch"); in testFillHatch()