34 references to Cell
PresentationFramework (34)
MS\Internal\Documents\TextDocumentView.cs (10)
2602cpcCur = tableResult.GetCellAbove(suggestedX, cpcCur.Cell.RowGroupIndex, cpcCur.Cell.RowIndex); 2606cpcCur = tableResult.GetCellBelow(suggestedX, cpcCur.Cell.RowGroupIndex, cpcCur.Cell.RowIndex + cpcCur.Cell.RowSpan - 1); 2862cpcCur = tableResult.GetCellAbove(suggestedX, cpcCur.Cell.RowGroupIndex, cpcCur.Cell.RowIndex); 2866cpcCur = tableResult.GetCellBelow(suggestedX, cpcCur.Cell.RowGroupIndex, cpcCur.Cell.RowIndex + cpcCur.Cell.RowSpan - 1);
MS\Internal\PtsHost\CellParaClient.cs (13)
85&& (Cell.ColumnIndex + Cell.ColumnSpan) <= calculatedColumns.Length); 91int i = Cell.ColumnIndex + Cell.ColumnSpan - 1; 323if (endPosition.CompareTo(Cell.StaticElementEnd) >= 0) 365&& (Cell.ColumnIndex + Cell.ColumnSpan) <= calculatedColumns.Length); 371int i = Cell.ColumnIndex + Cell.ColumnSpan - 1; 376} while (--i >= Cell.ColumnIndex); 402internal Table Table { get { return (Cell.Table); } } 412internal int ColumnIndex { get { return (Cell.ColumnIndex); } } 468_cell = cpc.Cell;
MS\Internal\PtsHost\TableParaClient.cs (11)
861if (endPosition.CompareTo(cpc.Cell.ContentStart) <= 0) 871if (startPosition.CompareTo(cpc.Cell.ContentEnd) <= 0) 928if(position.CompareTo(cpc.Cell.ContentStart) >= 0 && position.CompareTo(cpc.Cell.ContentEnd) <= 0) 990int cellBottomIndex = cpc.Cell.RowIndex + cpc.Cell.RowSpan - 1; 991if( (cellBottomIndex < rowIndex && cpc.Cell.RowGroupIndex == rowGroupIndex) || 992(cpc.Cell.RowGroupIndex < rowGroupIndex) 1067if( (cpc.Cell.RowIndex > rowIndex && cpc.Cell.RowGroupIndex == rowGroupIndex) || 1068(cpc.Cell.RowGroupIndex > rowGroupIndex)