27 references to RowSpan
PresentationFramework (27)
MS\Internal\Documents\TextDocumentView.cs (2)
2563
cpcCur = tableResult.GetCellBelow(suggestedX, cpcCur.Cell.RowGroupIndex, cpcCur.Cell.RowIndex + cpcCur.Cell.
RowSpan
- 1);
2822
cpcCur = tableResult.GetCellBelow(suggestedX, cpcCur.Cell.RowGroupIndex, cpcCur.Cell.RowIndex + cpcCur.Cell.
RowSpan
- 1);
MS\Internal\LayoutDump.cs (1)
980
writer.WriteAttributeString("RowSpan", cell.
RowSpan
.ToString(CultureInfo.InvariantCulture));
MS\Internal\PtsHost\RowParagraph.cs (3)
237
if (cell.
RowSpan
== 1)
267
else if (Row.Index - cell.RowIndex + 1 < cell.
RowSpan
)
275
Debug.Assert(Row.Index - cell.RowIndex + 1 == cell.
RowSpan
);
MS\Internal\PtsHost\TableParaClient.cs (1)
983
int cellBottomIndex = cpc.Cell.RowIndex + cpc.Cell.
RowSpan
- 1;
MS\Internal\PtsTable\RowSpanVector.cs (2)
78
&& cell.
RowSpan
> 1
110
_entries[_index].Ttl = cell.
RowSpan
- 1;
System\Windows\Automation\Peers\TableCellAutomationPeer.cs (1)
127
return ((TableCell)Owner).
RowSpan
;
System\Windows\Documents\TableRow.cs (1)
204
int rowSpan = cell.
RowSpan
;
System\Windows\Documents\TextRangeEditTables.cs (15)
333
int lastRowIndex = Math.Max(anchorCell.Row.Index + anchorCell.
RowSpan
- 1, movingCell.Row.Index + movingCell.
RowSpan
- 1);
1140
cell.ContentStart.TextContainer.SetValue(cell.ContentStart, TableCell.RowSpanProperty, cell.
RowSpan
+ (rowCount > 0 ? rowCount : -rowCount));
1178
if (rowCount < 0 || currentCell.
RowSpan
== 1)
1291
double borderBottom = rowIndex + cell.
RowSpan
< rowCount ? 0.0 : border.Top;
1322
Invariant.Assert(spannedCell.
RowSpan
> deletedRowsCount, "spannedCell.RowSpan is expected to be > deletedRowsCount");
1323
spannedCell.ContentStart.TextContainer.SetValue(spannedCell.ContentStart, TableCell.RowSpanProperty, spannedCell.
RowSpan
- deletedRowsCount);
1335
Invariant.Assert(spannedCell.
RowSpan
- (nextRow.Index - spannedCell.Row.Index) > 0, "expecting: spannedCell.RowSpan - (nextRow.Index - spannedCell.Row.Index) > 0");
1336
newCell.ContentStart.TextContainer.SetValue(newCell.ContentStart, TableCell.RowSpanProperty, spannedCell.
RowSpan
- (nextRow.Index - spannedCell.Row.Index));
1852
endCell.Row.Index + endCell.
RowSpan
- 1, // bottomRow
1898
if (startCell.ColumnSpan == 1 && startCell.
RowSpan
== 1)
1914
if (splitCountVertical > startCell.
RowSpan
- 1)
1916
splitCountVertical = startCell.
RowSpan
- 1;
2476
int rowSpan = spannedCell.
RowSpan
- 1;
2526
if (row.Index + cell.
RowSpan
- 1 > bottomRow)
System\windows\Documents\TextSelection.cs (1)
1040
nextRowIndex = movingCell.Row.Index + movingCell.
RowSpan
;