27 references to RowSpan
PresentationFramework (27)
MS\Internal\Documents\TextDocumentView.cs (2)
2573
cpcCur = tableResult.GetCellBelow(suggestedX, cpcCur.Cell.RowGroupIndex, cpcCur.Cell.RowIndex + cpcCur.Cell.
RowSpan
- 1);
2832
cpcCur = tableResult.GetCellBelow(suggestedX, cpcCur.Cell.RowGroupIndex, cpcCur.Cell.RowIndex + cpcCur.Cell.
RowSpan
- 1);
MS\Internal\LayoutDump.cs (1)
981
writer.WriteAttributeString("RowSpan", cell.
RowSpan
.ToString(CultureInfo.InvariantCulture));
MS\Internal\PtsHost\RowParagraph.cs (3)
238
if (cell.
RowSpan
== 1)
268
else if (Row.Index - cell.RowIndex + 1 < cell.
RowSpan
)
276
Debug.Assert(Row.Index - cell.RowIndex + 1 == cell.
RowSpan
);
MS\Internal\PtsHost\TableParaClient.cs (1)
984
int cellBottomIndex = cpc.Cell.RowIndex + cpc.Cell.
RowSpan
- 1;
MS\Internal\PtsTable\RowSpanVector.cs (2)
79
&& cell.
RowSpan
> 1
111
_entries[_index].Ttl = cell.
RowSpan
- 1;
System\Windows\Automation\Peers\TableCellAutomationPeer.cs (1)
128
return ((TableCell)Owner).
RowSpan
;
System\Windows\Documents\TableRow.cs (1)
208
int rowSpan = cell.
RowSpan
;
System\Windows\Documents\TextRangeEditTables.cs (15)
334
int lastRowIndex = Math.Max(anchorCell.Row.Index + anchorCell.
RowSpan
- 1, movingCell.Row.Index + movingCell.
RowSpan
- 1);
1141
cell.ContentStart.TextContainer.SetValue(cell.ContentStart, TableCell.RowSpanProperty, cell.
RowSpan
+ (rowCount > 0 ? rowCount : -rowCount));
1179
if (rowCount < 0 || currentCell.
RowSpan
== 1)
1292
double borderBottom = rowIndex + cell.
RowSpan
< rowCount ? 0.0 : border.Top;
1323
Invariant.Assert(spannedCell.
RowSpan
> deletedRowsCount, "spannedCell.RowSpan is expected to be > deletedRowsCount");
1324
spannedCell.ContentStart.TextContainer.SetValue(spannedCell.ContentStart, TableCell.RowSpanProperty, spannedCell.
RowSpan
- deletedRowsCount);
1336
Invariant.Assert(spannedCell.
RowSpan
- (nextRow.Index - spannedCell.Row.Index) > 0, "expecting: spannedCell.RowSpan - (nextRow.Index - spannedCell.Row.Index) > 0");
1337
newCell.ContentStart.TextContainer.SetValue(newCell.ContentStart, TableCell.RowSpanProperty, spannedCell.
RowSpan
- (nextRow.Index - spannedCell.Row.Index));
1853
endCell.Row.Index + endCell.
RowSpan
- 1, // bottomRow
1899
if (startCell.ColumnSpan == 1 && startCell.
RowSpan
== 1)
1915
if (splitCountVertical > startCell.
RowSpan
- 1)
1917
splitCountVertical = startCell.
RowSpan
- 1;
2477
int rowSpan = spannedCell.
RowSpan
- 1;
2527
if (row.Index + cell.
RowSpan
- 1 > bottomRow)
System\windows\Documents\TextSelection.cs (1)
1056
nextRowIndex = movingCell.Row.Index + movingCell.
RowSpan
;