Lines Matching refs:aSubGrids
461 Sequence< Reference< beans::XPropertySet > > aSubGrids( xAxis->getSubGridProperties() ); in showGrid() local
462 for( sal_Int32 nN=0; nN<aSubGrids.getLength(); nN++) in showGrid()
463 AxisHelper::makeGridVisible( aSubGrids[nN] ); in showGrid()
539 Sequence< Reference< beans::XPropertySet > > aSubGrids( xAxis->getSubGridProperties() ); in hideGrid() local
540 for( sal_Int32 nN=0; nN<aSubGrids.getLength(); nN++) in hideGrid()
541 AxisHelper::makeGridInvisible( aSubGrids[nN] ); in hideGrid()
570 Sequence< Reference< beans::XPropertySet > > aSubGrids( xAxis->getSubGridProperties() ); in isGridShown() local
571 if( aSubGrids.getLength() ) in isGridShown()
572 bRet = AxisHelper::isGridVisible( aSubGrids[0] ); in isGridShown()
718 Sequence< Reference< beans::XPropertySet > > aSubGrids( xAxis->getSubGridProperties() ); in getGridProperties() local
719 if( nSubGridIndex >= 0 && nSubGridIndex < aSubGrids.getLength() ) in getGridProperties()
720 xRet.set( aSubGrids[nSubGridIndex] ); in getGridProperties()
878 Sequence< Reference< beans::XPropertySet > > aSubGrids( xAxis->getSubGridProperties() );; in getAllGrids() local
880 for( nSubGrid = 0; nSubGrid < aSubGrids.getLength(); ++nSubGrid ) in getAllGrids()
882 Reference< beans::XPropertySet > xSubGrid( aSubGrids[nSubGrid] ); in getAllGrids()