Lines Matching refs:SCROW

73 	SCROW					nRow;
94 const ScAttrArray*& rpArr, SCROW& nAttrEndRow,
95 const ScAttrArray* pNewArr, SCROW nRow, ScDocument* pDoc );
98 SCROW nStartRow, SCROW nEndRow,
99 sal_Bool bLeft, SCCOL nDistRight, sal_Bool bTop, SCROW nDistBottom );
113 const ScPatternAttr* GetPattern( SCROW nRow ) const;
114 const ScPatternAttr* GetPatternRange( SCROW& rStartRow, SCROW& rEndRow, SCROW nRow ) const;
115 …void MergePatternArea( SCROW nStartRow, SCROW nEndRow, ScMergePatternState& rState, sal_Bool bDeep…
118 SCROW nStartRow, SCROW nEndRow, sal_Bool bLeft, SCCOL nDistRight ) const;
120 SCROW nStartRow, SCROW nEndRow, sal_Bool bLeft, SCCOL nDistRight );
122 void SetPattern( SCROW nRow, const ScPatternAttr* pPattern, sal_Bool bPutToPool = sal_False );
123 …void SetPatternArea( SCROW nStartRow, SCROW nEndRow, const ScPatternAttr* pPattern, sal_Bool bPutT…
124 void ApplyStyleArea( SCROW nStartRow, SCROW nEndRow, ScStyleSheet* pStyle );
125 void ApplyCacheArea( SCROW nStartRow, SCROW nEndRow, SfxItemPoolCache* pCache );
126 void ApplyLineStyleArea( SCROW nStartRow, SCROW nEndRow,
129 void ClearItems( SCROW nStartRow, SCROW nEndRow, const sal_uInt16* pWhich );
130 void ChangeIndent( SCROW nStartRow, SCROW nEndRow, sal_Bool bIncrement );
141 sal_Bool ApplyFlags( SCROW nStartRow, SCROW nEndRow, sal_Int16 nFlags );
142 sal_Bool RemoveFlags( SCROW nStartRow, SCROW nEndRow, sal_Int16 nFlags );
144 sal_Bool Search( SCROW nRow, SCSIZE& nIndex ) const;
146 sal_Bool HasLines( SCROW nRow1, SCROW nRow2, Rectangle& rSizes,
148 bool HasAttrib( SCROW nRow1, SCROW nRow2, sal_uInt16 nMask ) const;
149 sal_Bool ExtendMerge( SCCOL nThisCol, SCROW nStartRow, SCROW nEndRow,
150 SCCOL& rPaintCol, SCROW& rPaintRow,
152 sal_Bool RemoveAreaMerge( SCROW nStartRow, SCROW nEndRow );
157 void DeleteAreaSafe(SCROW nStartRow, SCROW nEndRow);
158 void SetPatternAreaSafe( SCROW nStartRow, SCROW nEndRow,
160 void CopyAreaSafe( SCROW nStartRow, SCROW nEndRow, long nDy, ScAttrArray& rAttrArray );
167 sal_Bool GetFirstVisibleAttr( SCROW& rFirstRow ) const;
168 sal_Bool GetLastVisibleAttr( SCROW& rLastRow, SCROW nLastData ) const;
172 sal_Bool GetLastAttr( SCROW& rLastRow, SCROW nLastData ) const;
173 sal_Bool HasVisibleAttrIn( SCROW nStartRow, SCROW nEndRow ) const;
175 SCROW nStartRow, SCROW nEndRow ) const;
176 sal_Bool IsAllEqual( const ScAttrArray& rOther, SCROW nStartRow, SCROW nEndRow ) const;
178 sal_Bool TestInsertCol( SCROW nStartRow, SCROW nEndRow) const;
180 void InsertRow( SCROW nStartRow, SCSIZE nSize );
181 void DeleteRow( SCROW nStartRow, SCSIZE nSize );
183 void DeleteArea( SCROW nStartRow, SCROW nEndRow );
184 void MoveTo( SCROW nStartRow, SCROW nEndRow, ScAttrArray& rAttrArray );
185 void CopyArea( SCROW nStartRow, SCROW nEndRow, long nDy, ScAttrArray& rAttrArray,
188 void DeleteHardAttr( SCROW nStartRow, SCROW nEndRow );
195 SCSIZE Count( SCROW nRw1, SCROW nRw2 );
207 SCROW nRow;
208 SCROW nEndRow;
210 inline ScAttrIterator( const ScAttrArray* pNewArray, SCROW nStart, SCROW nEnd );
211 inline const ScPatternAttr* Next( SCROW& rTop, SCROW& rBottom );
212 SCROW GetNextRow() const { return nRow; } in GetNextRow()
216 inline ScAttrIterator::ScAttrIterator( const ScAttrArray* pNewArray, SCROW nStart, SCROW nEnd ) : in ScAttrIterator()
227 inline const ScPatternAttr* ScAttrIterator::Next( SCROW& rTop, SCROW& rBottom ) in Next()