Lines Matching refs:xStyle
386 Reference< XStyle > xStyle; in ApplyCellStyles() local
391 mxTableStyle->getByIndex(first_row_style) >>= xStyle; in ApplyCellStyles()
395 mxTableStyle->getByIndex(last_row_style) >>= xStyle; in ApplyCellStyles()
398 if( !xStyle.is() ) in ApplyCellStyles()
403 mxTableStyle->getByIndex(first_column_style) >>= xStyle; in ApplyCellStyles()
407 mxTableStyle->getByIndex(last_column_style) >>= xStyle; in ApplyCellStyles()
411 if( !xStyle.is() && rStyle.mbUseRowBanding ) in ApplyCellStyles()
415 mxTableStyle->getByIndex(even_rows_style) >>= xStyle; in ApplyCellStyles()
419 mxTableStyle->getByIndex(odd_rows_style) >>= xStyle; in ApplyCellStyles()
423 if( !xStyle.is() && rStyle.mbUseColumnBanding ) in ApplyCellStyles()
427 mxTableStyle->getByIndex(even_columns_style) >>= xStyle; in ApplyCellStyles()
431 mxTableStyle->getByIndex(odd_columns_style) >>= xStyle; in ApplyCellStyles()
435 if( !xStyle.is() ) in ApplyCellStyles()
438 mxTableStyle->getByIndex(body_style) >>= xStyle; in ApplyCellStyles()
442 if( xStyle.is() ) in ApplyCellStyles()
444 SfxUnoStyleSheet* pStyle = SfxUnoStyleSheet::getUnoStyleSheet(xStyle); in ApplyCellStyles()