1 implementation of IsTableCellRange
PresentationFramework (1)
System\Windows\Documents\TextRange.cs (1)
447bool ITextRange.IsTableCellRange
17 references to IsTableCellRange
PresentationFramework (17)
System\windows\Documents\TextEditorCopyPaste.cs (1)
369if (This.Selection.IsTableCellRange)
System\windows\Documents\TextEditorDragDrop.cs (1)
626if (selectionContainedDropPosition && selection.IsTableCellRange)
System\windows\Documents\TextEditorLists.cs (1)
83if (This != null && This._IsEnabled && !This.IsReadOnly && !This.Selection.IsTableCellRange)
System\windows\Documents\TextEditorTyping.cs (7)
907if (This.Selection.IsTableCellRange) 933if (textRange.IsTableCellRange) 965if (This.Selection.IsTableCellRange) 995if (textRange.IsTableCellRange) 1041if (This.Selection.IsTableCellRange || !This.AcceptsReturn) 1060if (This.Selection.IsTableCellRange || !This.AcceptsReturn || !This.UiScope.IsKeyboardFocused) 1413if (This.Selection.IsTableCellRange)
System\Windows\Documents\TextRange.cs (2)
445/// <see cref="ITextRange.IsTableCellRange"/> 1400return ((ITextRange)this).IsTableCellRange;
System\Windows\Documents\TextRangeBase.cs (2)
258if (thisRange.IsTableCellRange) 1244if (!thisRange.IsTableCellRange)
System\Windows\Documents\TextRangeEditTables.cs (1)
44if (range == null || !range.IsTableCellRange)
System\Windows\Documents\TextRangeSerialization.cs (2)
97if (range.IsTableCellRange) 342Invariant.Assert(range.IsTableCellRange, "range is expected to be in IsTableCellRange state");