1 implementation of IsTableCellRange
PresentationFramework (1)
System\Windows\Documents\TextRange.cs (1)
437bool ITextRange.IsTableCellRange
17 references to IsTableCellRange
PresentationFramework (17)
System\windows\Documents\TextEditorCopyPaste.cs (1)
355if (This.Selection.IsTableCellRange)
System\windows\Documents\TextEditorDragDrop.cs (1)
608if (selectionContainedDropPosition && selection.IsTableCellRange)
System\windows\Documents\TextEditorLists.cs (1)
66if (This != null && This._IsEnabled && !This.IsReadOnly && !This.Selection.IsTableCellRange)
System\windows\Documents\TextEditorTyping.cs (7)
888if (This.Selection.IsTableCellRange) 914if (textRange.IsTableCellRange) 946if (This.Selection.IsTableCellRange) 976if (textRange.IsTableCellRange) 1022if (This.Selection.IsTableCellRange || !This.AcceptsReturn) 1041if (This.Selection.IsTableCellRange || !This.AcceptsReturn || !This.UiScope.IsKeyboardFocused) 1391if (This.Selection.IsTableCellRange)
System\Windows\Documents\TextRange.cs (2)
435/// <see cref="ITextRange.IsTableCellRange"/> 1388return ((ITextRange)this).IsTableCellRange;
System\Windows\Documents\TextRangeBase.cs (2)
254if (thisRange.IsTableCellRange) 1240if (!thisRange.IsTableCellRange)
System\Windows\Documents\TextRangeEditTables.cs (1)
41if (range == null || !range.IsTableCellRange)
System\Windows\Documents\TextRangeSerialization.cs (2)
90if (range.IsTableCellRange) 335Invariant.Assert(range.IsTableCellRange, "range is expected to be in IsTableCellRange state");