1 write to Index
PresentationFramework (1)
src\Framework\System\Windows\Documents\TableCell.cs (1)
337
set { this.
Index
= value; }
27 references to Index
PresentationFramework (27)
src\Framework\MS\Internal\PtsHost\CellParagraph.cs (3)
77
Debug.Assert(Cell.
Index
!= -1 && Cell.ColumnIndex != -1,
149
Debug.Assert(Cell.
Index
!= -1 && Cell.ColumnIndex != -1,
178
Debug.Assert(Cell.
Index
!= -1 && Cell.ColumnIndex != -1,
src\Framework\System\Windows\Documents\TableCell.cs (1)
336
get { return this.
Index
; }
src\Framework\System\Windows\Documents\TextRangeEditTables.cs (23)
368
Invariant.Assert(segmentStartCell.
Index
<= segmentEndCell.
Index
, "Index of segmentStartCell must be <= index of segentEndCell");
460
(movingCell.Row == anchorCell.Row && movingCell.
Index
+ 1 == anchorCell.
Index
||
461
anchorCell.
Index
== 0 && movingCell.
Index
== movingCell.Row.Cells.Count - 1 && movingCell.Row.Index + 1 == anchorCell.Row.Index))
474
if (movingCell.
Index
+ 1 < cells.Count)
477
movingCell = cells[movingCell.
Index
+ 1];
502
if (movingCell.
Index
> 0)
504
movingCell = cells[movingCell.
Index
- 1];
1909
int startCellIndex = startCell.
Index
;
1990
Invariant.Assert(startCell.
Index
<= endCell.
Index
, "insed of a startCell mustbe <= an index of an endCell");
2097
movingCell.
Index
> 0)
2101
movingCell = movingCell.Row.Cells[movingCell.
Index
- 1];
2459
row.Cells.RemoveRange(firstCell.
Index
+ 1, lastCell.
Index
- firstCell.
Index
+ 1 - 1);
2467
if (firstCell.
Index
== 0 && lastCell.
Index
== lastCell.Row.Cells.Count - 1)
2498
row.Cells.RemoveRange(firstCell.
Index
, lastCell.
Index
- firstCell.
Index
+ 1);