Home
last modified time | relevance | path

Searched refs:mxDiagramPropertySet (Results 1 – 3 of 3) sorted by relevance

/AOO42X/main/sc/source/ui/vba/
H A Dvbachart.cxx81 mxDiagramPropertySet.set( mxChartDocument->getDiagram(), uno::UNO_QUERY_THROW ); in ScVbaChart()
134 if (mxDiagramPropertySet->getPropertySetInfo()->hasPropertyByName(SOLIDTYPE)) in getChartType()
137 mxDiagramPropertySet->getPropertyValue(SOLIDTYPE) >>= nSolidType; in getChartType()
165 mxDiagramPropertySet->getPropertyValue(VOLUME) >>= bVolume; in getChartType()
178 mxDiagramPropertySet->getPropertyValue(LINES) >>= bHasLines; in getChartType()
180 mxDiagramPropertySet->getPropertyValue(SPLINETYPE) >>= nSplineType; in getChartType()
298mxDiagramPropertySet->setPropertyValue( UPDOWN, uno::makeAny(sal_Bool((_nChartType == xlStockOHLC)… in setChartType()
299mxDiagramPropertySet->setPropertyValue(VOLUME, uno::makeAny(sal_Bool((_nChartType == xlStockVHLC) … in setChartType()
329 mxDiagramPropertySet->setPropertyValue(LINES, uno::makeAny( sal_False )); in setChartType()
333 mxDiagramPropertySet->setPropertyValue(LINES, uno::makeAny( sal_True )); in setChartType()
[all …]
H A Dvbaaxis.cxx242 …pChart->mxDiagramPropertySet->setPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("HasXAx… in setHasTitle()
245 …pChart->mxDiagramPropertySet->setPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("HasZAx… in setHasTitle()
248 …pChart->mxDiagramPropertySet->setPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("HasYAx… in setHasTitle()
269 …pChart->mxDiagramPropertySet->getPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("HasXAx… in getHasTitle()
272 …pChart->mxDiagramPropertySet->getPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("HasZAx… in getHasTitle()
275 …pChart->mxDiagramPropertySet->getPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("HasYAx… in getHasTitle()
H A Dvbachart.hxx47 css::uno::Reference< css::beans::XPropertySet > mxDiagramPropertySet; member in ScVbaChart
72 …::uno::Reference< css::beans::XPropertySet > xDiagramPropertySet() { return mxDiagramPropertySet; } in xDiagramPropertySet()