34 references to Cell
PresentationFramework (34)
src\Framework\MS\Internal\Documents\TextDocumentView.cs (10)
2610cpcCur = tableResult.GetCellAbove(suggestedX, cpcCur.Cell.RowGroupIndex, cpcCur.Cell.RowIndex); 2614cpcCur = tableResult.GetCellBelow(suggestedX, cpcCur.Cell.RowGroupIndex, cpcCur.Cell.RowIndex + cpcCur.Cell.RowSpan - 1); 2871cpcCur = tableResult.GetCellAbove(suggestedX, cpcCur.Cell.RowGroupIndex, cpcCur.Cell.RowIndex); 2875cpcCur = tableResult.GetCellBelow(suggestedX, cpcCur.Cell.RowGroupIndex, cpcCur.Cell.RowIndex + cpcCur.Cell.RowSpan - 1);
src\Framework\MS\Internal\PtsHost\CellParaClient.cs (13)
97&& (Cell.ColumnIndex + Cell.ColumnSpan) <= calculatedColumns.Length); 103int i = Cell.ColumnIndex + Cell.ColumnSpan - 1; 350if (endPosition.CompareTo(Cell.StaticElementEnd) >= 0) 392&& (Cell.ColumnIndex + Cell.ColumnSpan) <= calculatedColumns.Length); 398int i = Cell.ColumnIndex + Cell.ColumnSpan - 1; 403} while (--i >= Cell.ColumnIndex); 429internal Table Table { get { return (Cell.Table); } } 439internal int ColumnIndex { get { return (Cell.ColumnIndex); } } 496_cell = cpc.Cell;
src\Framework\MS\Internal\PtsHost\TableParaClient.cs (11)
923if (endPosition.CompareTo(cpc.Cell.ContentStart) <= 0) 933if (startPosition.CompareTo(cpc.Cell.ContentEnd) <= 0) 996if(position.CompareTo(cpc.Cell.ContentStart) >= 0 && position.CompareTo(cpc.Cell.ContentEnd) <= 0) 1064int cellBottomIndex = cpc.Cell.RowIndex + cpc.Cell.RowSpan - 1; 1065if( (cellBottomIndex < rowIndex && cpc.Cell.RowGroupIndex == rowGroupIndex) || 1066(cpc.Cell.RowGroupIndex < rowGroupIndex) 1147if( (cpc.Cell.RowIndex > rowIndex && cpc.Cell.RowGroupIndex == rowGroupIndex) || 1148(cpc.Cell.RowGroupIndex > rowGroupIndex)