34 references to Cell
PresentationFramework (34)
MS\Internal\Documents\TextDocumentView.cs (10)
2600cpcCur = tableResult.GetCellAbove(suggestedX, cpcCur.Cell.RowGroupIndex, cpcCur.Cell.RowIndex); 2604cpcCur = tableResult.GetCellBelow(suggestedX, cpcCur.Cell.RowGroupIndex, cpcCur.Cell.RowIndex + cpcCur.Cell.RowSpan - 1); 2860cpcCur = tableResult.GetCellAbove(suggestedX, cpcCur.Cell.RowGroupIndex, cpcCur.Cell.RowIndex); 2864cpcCur = tableResult.GetCellBelow(suggestedX, cpcCur.Cell.RowGroupIndex, cpcCur.Cell.RowIndex + cpcCur.Cell.RowSpan - 1);
MS\Internal\PtsHost\CellParaClient.cs (13)
80&& (Cell.ColumnIndex + Cell.ColumnSpan) <= calculatedColumns.Length); 86int i = Cell.ColumnIndex + Cell.ColumnSpan - 1; 318if (endPosition.CompareTo(Cell.StaticElementEnd) >= 0) 360&& (Cell.ColumnIndex + Cell.ColumnSpan) <= calculatedColumns.Length); 366int i = Cell.ColumnIndex + Cell.ColumnSpan - 1; 371} while (--i >= Cell.ColumnIndex); 397internal Table Table { get { return (Cell.Table); } } 407internal int ColumnIndex { get { return (Cell.ColumnIndex); } } 463_cell = cpc.Cell;
MS\Internal\PtsHost\TableParaClient.cs (11)
855if (endPosition.CompareTo(cpc.Cell.ContentStart) <= 0) 865if (startPosition.CompareTo(cpc.Cell.ContentEnd) <= 0) 922if(position.CompareTo(cpc.Cell.ContentStart) >= 0 && position.CompareTo(cpc.Cell.ContentEnd) <= 0) 984int cellBottomIndex = cpc.Cell.RowIndex + cpc.Cell.RowSpan - 1; 985if( (cellBottomIndex < rowIndex && cpc.Cell.RowGroupIndex == rowGroupIndex) || 986(cpc.Cell.RowGroupIndex < rowGroupIndex) 1061if( (cpc.Cell.RowIndex > rowIndex && cpc.Cell.RowGroupIndex == rowGroupIndex) || 1062(cpc.Cell.RowGroupIndex > rowGroupIndex)