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