26 references to RowSpan
PresentationFramework (26)
src\Framework\MS\Internal\Documents\TextDocumentView.cs (2)
2614cpcCur = tableResult.GetCellBelow(suggestedX, cpcCur.Cell.RowGroupIndex, cpcCur.Cell.RowIndex + cpcCur.Cell.RowSpan - 1); 2875cpcCur = tableResult.GetCellBelow(suggestedX, cpcCur.Cell.RowGroupIndex, cpcCur.Cell.RowIndex + cpcCur.Cell.RowSpan - 1);
src\Framework\MS\Internal\LayoutDump.cs (1)
985writer.WriteAttributeString("RowSpan", cell.RowSpan.ToString(CultureInfo.InvariantCulture));
src\Framework\MS\Internal\PtsHost\RowParagraph.cs (3)
256if (cell.RowSpan == 1) 286else if (Row.Index - cell.RowIndex + 1 < cell.RowSpan) 294Debug.Assert(Row.Index - cell.RowIndex + 1 == cell.RowSpan);
src\Framework\MS\Internal\PtsHost\TableParaClient.cs (1)
1064int cellBottomIndex = cpc.Cell.RowIndex + cpc.Cell.RowSpan - 1;
src\Framework\MS\Internal\PtsTable\RowSpanVector.cs (1)
117_entries[_index].Ttl = cell.RowSpan - 1;
src\Framework\System\Windows\Automation\Peers\TableCellAutomationPeer.cs (1)
130return ((TableCell)Owner).RowSpan;
src\Framework\System\Windows\Documents\TableRow.cs (1)
232int rowSpan = cell.RowSpan;
src\Framework\System\Windows\Documents\TextRangeEditTables.cs (15)
339int lastRowIndex = Math.Max(anchorCell.Row.Index + anchorCell.RowSpan - 1, movingCell.Row.Index + movingCell.RowSpan - 1); 1142cell.ContentStart.TextContainer.SetValue(cell.ContentStart, TableCell.RowSpanProperty, cell.RowSpan + (rowCount > 0 ? rowCount : -rowCount)); 1180if (rowCount < 0 || currentCell.RowSpan == 1) 1293double borderBottom = rowIndex + cell.RowSpan < rowCount ? 0.0 : border.Top; 1324Invariant.Assert(spannedCell.RowSpan > deletedRowsCount, "spannedCell.RowSpan is expected to be > deletedRowsCount"); 1325spannedCell.ContentStart.TextContainer.SetValue(spannedCell.ContentStart, TableCell.RowSpanProperty, spannedCell.RowSpan - deletedRowsCount); 1337Invariant.Assert(spannedCell.RowSpan - (nextRow.Index - spannedCell.Row.Index) > 0, "expecting: spannedCell.RowSpan - (nextRow.Index - spannedCell.Row.Index) > 0"); 1338newCell.ContentStart.TextContainer.SetValue(newCell.ContentStart, TableCell.RowSpanProperty, spannedCell.RowSpan - (nextRow.Index - spannedCell.Row.Index)); 1854endCell.Row.Index + endCell.RowSpan - 1, // bottomRow 1900if (startCell.ColumnSpan == 1 && startCell.RowSpan == 1) 1916if (splitCountVertical > startCell.RowSpan - 1) 1918splitCountVertical = startCell.RowSpan - 1; 2478int rowSpan = spannedCell.RowSpan - 1; 2528if (row.Index + cell.RowSpan - 1 > bottomRow)
src\Framework\System\windows\Documents\TextSelection.cs (1)
1062nextRowIndex = movingCell.Row.Index + movingCell.RowSpan;