Lines Matching refs:xCols
1009 Reference< XIndexAccess > xCols(GetPeer()->getColumns(), UNO_QUERY); in SetColWidth() local
1011 if (xCols.is() && (nModelPos != (sal_uInt16)-1)) in SetColWidth()
1012 ::cppu::extractInterface(xAffectedCol,xCols->getByIndex(nModelPos)); in SetColWidth()
1042 Reference< XPropertySet > xCols(GetPeer()->getColumns(), UNO_QUERY); in SetRowHeight() local
1043 if (!xCols.is()) in SetRowHeight()
1046 Any aHeight = xCols->getPropertyValue(PROPERTY_ROW_HEIGHT); in SetRowHeight()
1056 Reference< XPropertyState > xPropState(xCols, UNO_QUERY); in SetRowHeight()
1071 xCols->setPropertyValue(PROPERTY_ROW_HEIGHT, aNewHeight); in SetRowHeight()
1090 Reference< XIndexAccess > xCols(GetPeer()->getColumns(), UNO_QUERY); in SetColAttrs() local
1092 if (xCols.is() && (nModelPos != (sal_uInt16)-1)) in SetColAttrs()
1093 ::cppu::extractInterface(xAffectedCol,xCols->getByIndex(nModelPos)); in SetColAttrs()
1225 Reference< XIndexAccess > xCols(GetPeer()->getColumns(), UNO_QUERY); in getField() local
1226 if ( xCols.is() && xCols->getCount() > nModelPos ) in getField()
1228 Reference< XPropertySet > xCol(xCols->getByIndex(nModelPos),UNO_QUERY); in getField()
1403 Reference< XIndexContainer > xCols(GetPeer()->getColumns(), UNO_QUERY); in DoColumnDrag() local
1404 xAffectedCol.set(xCols->getByIndex(nModelPos),UNO_QUERY); in DoColumnDrag()