18 references to Table
PresentationFramework (18)
MS\Internal\Documents\TextDocumentView.cs (1)
1050if (tableFilter != null && cellInfo != null && cellInfo.Cell.Table != tableFilter)
MS\Internal\PtsHost\CellParaClient.cs (1)
396internal Table Table { get { return (Cell.Table); } }
MS\Internal\PtsHost\CellParagraph.cs (3)
70Debug.Assert(Cell.Table != null); 139Debug.Assert(Cell.Table != null); 168Debug.Assert(Cell.Table != null);
System\Windows\Automation\Peers\TableCellAutomationPeer.cs (1)
151return ProviderFromPeer(CreatePeerForElement(((TableCell)Owner).Table));
System\Windows\Documents\TableCell.cs (3)
325Table?.OnStructureChanged(); 562cell.Table?.OnStructureChanged(); 576cell.Table?.OnStructureChanged();
System\Windows\Documents\TextRangeEditTables.cs (9)
539movingPosition = anchorCell.Table.ContentEnd; 543movingPosition = anchorCell.Table.ContentStart; 1464InsertColumn(colIndexInsert - 1, endCell.Table as Table); 1468InsertColumn(colIndexInsert, endCell.Table as Table); 1552if (cColsDelete == 0 || cColsDelete == startCell.Table.ColumnCount) 1559DeleteColumn(iIndexDelete, endCell.Table as Table); 1632if (cell.ColumnIndex + cell.ColumnSpan <= cell.Table.ColumnCount && 1647table = cell.Table; 2546return cell.ColumnIndex + cell.ColumnSpan == cell.Table.ColumnCount;