27 references to RowSpan
PresentationFramework (27)
MS\Internal\Documents\TextDocumentView.cs (2)
2606cpcCur = tableResult.GetCellBelow(suggestedX, cpcCur.Cell.RowGroupIndex, cpcCur.Cell.RowIndex + cpcCur.Cell.RowSpan - 1); 2866cpcCur = tableResult.GetCellBelow(suggestedX, cpcCur.Cell.RowGroupIndex, cpcCur.Cell.RowIndex + cpcCur.Cell.RowSpan - 1);
MS\Internal\LayoutDump.cs (1)
982writer.WriteAttributeString("RowSpan", cell.RowSpan.ToString(CultureInfo.InvariantCulture));
MS\Internal\PtsHost\RowParagraph.cs (3)
241if (cell.RowSpan == 1) 271else if (Row.Index - cell.RowIndex + 1 < cell.RowSpan) 279Debug.Assert(Row.Index - cell.RowIndex + 1 == cell.RowSpan);
MS\Internal\PtsHost\TableParaClient.cs (1)
990int cellBottomIndex = cpc.Cell.RowIndex + cpc.Cell.RowSpan - 1;
MS\Internal\PtsTable\RowSpanVector.cs (2)
81&& cell.RowSpan > 1 113_entries[_index].Ttl = cell.RowSpan - 1;
System\Windows\Automation\Peers\TableCellAutomationPeer.cs (1)
128return ((TableCell)Owner).RowSpan;
System\Windows\Documents\TableRow.cs (1)
223int rowSpan = cell.RowSpan;
System\Windows\Documents\TextRangeEditTables.cs (15)
336int lastRowIndex = Math.Max(anchorCell.Row.Index + anchorCell.RowSpan - 1, movingCell.Row.Index + movingCell.RowSpan - 1); 1139cell.ContentStart.TextContainer.SetValue(cell.ContentStart, TableCell.RowSpanProperty, cell.RowSpan + (rowCount > 0 ? rowCount : -rowCount)); 1177if (rowCount < 0 || currentCell.RowSpan == 1) 1290double borderBottom = rowIndex + cell.RowSpan < rowCount ? 0.0 : border.Top; 1321Invariant.Assert(spannedCell.RowSpan > deletedRowsCount, "spannedCell.RowSpan is expected to be > deletedRowsCount"); 1322spannedCell.ContentStart.TextContainer.SetValue(spannedCell.ContentStart, TableCell.RowSpanProperty, spannedCell.RowSpan - deletedRowsCount); 1334Invariant.Assert(spannedCell.RowSpan - (nextRow.Index - spannedCell.Row.Index) > 0, "expecting: spannedCell.RowSpan - (nextRow.Index - spannedCell.Row.Index) > 0"); 1335newCell.ContentStart.TextContainer.SetValue(newCell.ContentStart, TableCell.RowSpanProperty, spannedCell.RowSpan - (nextRow.Index - spannedCell.Row.Index)); 1851endCell.Row.Index + endCell.RowSpan - 1, // bottomRow 1897if (startCell.ColumnSpan == 1 && startCell.RowSpan == 1) 1913if (splitCountVertical > startCell.RowSpan - 1) 1915splitCountVertical = startCell.RowSpan - 1; 2475int rowSpan = spannedCell.RowSpan - 1; 2525if (row.Index + cell.RowSpan - 1 > bottomRow)
System\windows\Documents\TextSelection.cs (1)
1059nextRowIndex = movingCell.Row.Index + movingCell.RowSpan;