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