1 implementation of IsTableCellRange
PresentationFramework (1)
System\Windows\Documents\TextRange.cs (1)
444bool ITextRange.IsTableCellRange
17 references to IsTableCellRange
PresentationFramework (17)
System\windows\Documents\TextEditorCopyPaste.cs (1)
356if (This.Selection.IsTableCellRange)
System\windows\Documents\TextEditorDragDrop.cs (1)
609if (selectionContainedDropPosition && selection.IsTableCellRange)
System\windows\Documents\TextEditorLists.cs (1)
67if (This != null && This._IsEnabled && !This.IsReadOnly && !This.Selection.IsTableCellRange)
System\windows\Documents\TextEditorTyping.cs (7)
898if (This.Selection.IsTableCellRange) 924if (textRange.IsTableCellRange) 956if (This.Selection.IsTableCellRange) 986if (textRange.IsTableCellRange) 1032if (This.Selection.IsTableCellRange || !This.AcceptsReturn) 1051if (This.Selection.IsTableCellRange || !This.AcceptsReturn || !This.UiScope.IsKeyboardFocused) 1404if (This.Selection.IsTableCellRange)
System\Windows\Documents\TextRange.cs (2)
442/// <see cref="ITextRange.IsTableCellRange"/> 1397return ((ITextRange)this).IsTableCellRange;
System\Windows\Documents\TextRangeBase.cs (2)
255if (thisRange.IsTableCellRange) 1241if (!thisRange.IsTableCellRange)
System\Windows\Documents\TextRangeEditTables.cs (1)
42if (range == null || !range.IsTableCellRange)
System\Windows\Documents\TextRangeSerialization.cs (2)
91if (range.IsTableCellRange) 336Invariant.Assert(range.IsTableCellRange, "range is expected to be in IsTableCellRange state");