Lines Matching refs:xValidPropSet

171 		XPropertySet xValidPropSet = (XPropertySet) UnoRuntime  in test()  local
179 xValidPropSet.setPropertyValue("IgnoreBlankCells", ignoreBlankCells); in test()
180 xValidPropSet.setPropertyValue("Type", validationtype); in test()
181 xValidPropSet.setPropertyValue("ErrorTitle", errorTitle); in test()
182 xValidPropSet.setPropertyValue("ShowErrorMessage", showErrorMessage); in test()
183 xValidPropSet.setPropertyValue("ErrorMessage", errorMessage); in test()
184 xValidPropSet.setPropertyValue("ErrorAlertStyle", validationAlertStyle); in test()
185 xValidPropSet.setPropertyValue("ShowInputMessage", showInputMessage); in test()
186 xValidPropSet.setPropertyValue("InputMessage", inputHelp); in test()
187 xValidPropSet.setPropertyValue("InputTitle", inputTitle); in test()
191 .queryInterface(XSheetCondition.class, xValidPropSet); in test()
197 xCellPropSet.setPropertyValue("Validation", xValidPropSet); in test()
211 xValidPropSet = (XPropertySet) UnoRuntime in test()
218 assertEquals("", xValidPropSet.getPropertyValue("ErrorMessage")); in test()
221 xValidPropSet.getPropertyValue("ErrorMessage")); in test()
224 xValidPropSet.getPropertyValue("ShowErrorMessage")); in test()
226 xValidPropSet.getPropertyValue("ShowInputMessage")); in test()
227 assertEquals(inputHelp, xValidPropSet.getPropertyValue("InputMessage")); in test()
229 xValidPropSet.getPropertyValue("IgnoreBlankCells")); in test()
230 assertEquals(validationtype, xValidPropSet.getPropertyValue("Type")); in test()
231 assertEquals(errorTitle, xValidPropSet.getPropertyValue("ErrorTitle")); in test()
233 xValidPropSet.getPropertyValue("ErrorAlertStyle")); in test()
234 assertEquals(inputTitle, xValidPropSet.getPropertyValue("InputTitle")); in test()
237 XSheetCondition.class, xValidPropSet); in test()