Lines Matching refs:xProp

259                 XPropertySet xProp = xDisp.getWall();  in testDiagram()  local
260 if( xProp != null ) in testDiagram()
263 xProp.setPropertyValue( "FillColor", new Integer( nColor ) ); in testDiagram()
264 int nNewColor = AnyConverter.toInt( xProp.getPropertyValue( "FillColor" ) ); in testDiagram()
272 xProp = (XPropertySet) UnoRuntime.queryInterface( XPropertySet.class, xDia ); in testDiagram()
273 assure( "Diagram is no property set", xProp != null ); in testDiagram()
277 xProp.setPropertyValue( "HasYAxisDescription", new Boolean( bFirstYAxisText )); in testDiagram()
279 xProp.getPropertyValue( "HasYAxisDescription" )); in testDiagram()
299 xProp.setPropertyValue( "HasSecondaryYAxis", new Boolean( bSecondaryYAxis )); in testDiagram()
301 xProp.getPropertyValue( "HasSecondaryYAxis" )); in testDiagram()
367 XPropertySet xProp = xYAxisSuppl.getYAxis(); in testAxis() local
368 assure( "No y-axis found", xProp != null ); in testAxis()
371 Object oMax = xProp.getPropertyValue( "Max" ); in testAxis()
377 xProp.setPropertyValue( "AutoMax", new Boolean( false )); in testAxis()
378 oMax = xProp.getPropertyValue( "Max" ); in testAxis()
387 xProp.setPropertyValue( "Max", new Double( nNewMax )); in testAxis()
388 … assure( "AutoMax is on", ! AnyConverter.toBoolean( xProp.getPropertyValue( "AutoMax" )) ); in testAxis()
392 AnyConverter.toDouble( xProp.getPropertyValue( "Max" )), in testAxis()
395 xProp.setPropertyValue( "AutoMin", new Boolean( true )); in testAxis()
396 … assure( "AutoMin is off", AnyConverter.toBoolean( xProp.getPropertyValue( "AutoMin" )) ); in testAxis()
398 xProp.setPropertyValue( "Origin", new Double( nNewOrigin )); in testAxis()
401 AnyConverter.toDouble( xProp.getPropertyValue( "Origin" )), in testAxis()
403 xProp.setPropertyValue( "AutoOrigin", new Boolean( true )); in testAxis()
404 … assure( "AutoOrigin is off", AnyConverter.toBoolean( xProp.getPropertyValue( "AutoOrigin" )) ); in testAxis()
405 Object oOrigin = xProp.getPropertyValue( "Origin" ); in testAxis()
409 xProp.setPropertyValue( "Logarithmic", new Boolean( true )); in testAxis()
411 AnyConverter.toBoolean( xProp.getPropertyValue( "Logarithmic" )) ); in testAxis()
412 xProp.setPropertyValue( "Logarithmic", new Boolean( false )); in testAxis()
414 ! AnyConverter.toBoolean( xProp.getPropertyValue( "Logarithmic" )) ); in testAxis()
417 xProp.setPropertyValue( "LineColor", new Integer( nNewColor )); in testAxis()
419 AnyConverter.toInt( xProp.getPropertyValue( "LineColor" )) == nNewColor ); in testAxis()
421 xProp.setPropertyValue( "CharHeight", new Float( fNewCharHeight )); in testAxis()
423 … AnyConverter.toFloat( xProp.getPropertyValue( "CharHeight" )) == fNewCharHeight ); in testAxis()
426 xProp.setPropertyValue( "TextRotation", new Integer( nNewTextRotation )); in testAxis()
428 … AnyConverter.toInt( xProp.getPropertyValue( "TextRotation" )) == nNewTextRotation ); in testAxis()
431 xProp.setPropertyValue( "StepMain", new Double( fStepMain )); in testAxis()
433 AnyConverter.toDouble( xProp.getPropertyValue( "StepMain" )) == fStepMain ); in testAxis()
439 xProp.setPropertyValue( "StepHelp", new Double( fStepHelp )); in testAxis()
441 AnyConverter.toDouble( xProp.getPropertyValue( "StepHelp" )) == fStepHelp ); in testAxis()
443 xProp.setPropertyValue( "DisplayLabels", new Boolean( false )); in testAxis()
445 xProp.getPropertyValue( "DisplayLabels" ))); in testAxis()
630 XPropertySet xProp = xDia.getDataRowProperties( 0 ); in testDataSeriesAndPoints() local
632 xProp.setPropertyValue( "FillColor", new Integer( nColor )); in testDataSeriesAndPoints()
633 int nNewColor = AnyConverter.toInt( xProp.getPropertyValue( "FillColor" ) ); in testDataSeriesAndPoints()
637 assure( "No DataRowProperties for series 0", xProp != null ); in testDataSeriesAndPoints()
659 xProp.setPropertyValue( "FillStyle", FillStyle.GRADIENT ); in testDataSeriesAndPoints()
660 xProp.setPropertyValue( "FillGradientName", aGradientName ); in testDataSeriesAndPoints()
661 … String aNewGradientName = AnyConverter.toString( xProp.getPropertyValue( "FillGradientName" )); in testDataSeriesAndPoints()
678 xProp = xDia.getDataPointProperties( 1, 0 ); in testDataSeriesAndPoints()
679 assure( "No DataPointProperties for (1,0)", xProp != null ); in testDataSeriesAndPoints()
695 xProp.setPropertyValue( "FillHatchName", aHatchName ); in testDataSeriesAndPoints()
696 xProp.setPropertyValue( "FillStyle", FillStyle.HATCH ); in testDataSeriesAndPoints()
697 xProp.setPropertyValue( "FillBackground", new Boolean( true )); in testDataSeriesAndPoints()
698 … String aNewHatchName = AnyConverter.toString( xProp.getPropertyValue( "FillHatchName" )); in testDataSeriesAndPoints()
707 … assure( "FillBackground", AnyConverter.toBoolean( xProp.getPropertyValue( "FillBackground" )) ); in testDataSeriesAndPoints()
725 XPropertySet xProp = xDia.getDataRowProperties( 0 ); in testStatistics() local
726 assure( "No DataRowProperties for first series", xProp != null ); in testStatistics()
728 xProp.setPropertyValue( "MeanValue", new Boolean( true )); in testStatistics()
729 … assure( "No MeanValue", AnyConverter.toBoolean( xProp.getPropertyValue( "MeanValue" )) ); in testStatistics()
1000 XPropertySet xProp = (XPropertySet) UnoRuntime.queryInterface( in getComponentContext() local
1002 if( xProp != null ) in getComponentContext()
1008 xProp.getPropertyValue( "DefaultContext" ) ); in getComponentContext()