Lines Matching refs:xProp
49 uno::Reference< beans::XPropertySet > xProp( xLegend, uno::UNO_QUERY ); in showLegend() local
50 if( xProp.is()) in showLegend()
52 xProp->setPropertyValue( C2U("Show"), uno::makeAny(sal_True) ); in showLegend()
55 if( !(xProp->getPropertyValue( C2U( "RelativePosition" )) >>= aRelativePosition) ) in showLegend()
58 if( !(xProp->getPropertyValue( C2U( "AnchorPosition" )) >>= ePos ) ) in showLegend()
59 xProp->setPropertyValue( C2U( "AnchorPosition" ), uno::makeAny( ePos )); in showLegend()
66 if( !(xProp->getPropertyValue( C2U( "Expansion" )) >>= eExpansion ) ) in showLegend()
67 xProp->setPropertyValue( C2U( "Expansion" ), uno::makeAny( eExpansion )); in showLegend()
69 xProp->setPropertyValue( C2U( "RelativePosition" ), uno::Any()); in showLegend()
79 uno::Reference< beans::XPropertySet > xProp( xLegend, uno::UNO_QUERY ); in hideLegend() local
80 if( xProp.is()) in hideLegend()
82 xProp->setPropertyValue( C2U("Show"), uno::makeAny(sal_False) ); in hideLegend()