1 implementation of IsTableCellRange
PresentationFramework (1)
src\Framework\System\Windows\Documents\TextRange.cs (1)
437bool ITextRange.IsTableCellRange
17 references to IsTableCellRange
PresentationFramework (17)
src\Framework\System\windows\Documents\TextEditorCopyPaste.cs (1)
484if (This.Selection.IsTableCellRange)
src\Framework\System\windows\Documents\TextEditorDragDrop.cs (1)
638if (selectionContainedDropPosition && selection.IsTableCellRange)
src\Framework\System\windows\Documents\TextEditorLists.cs (1)
85if (This != null && This._IsEnabled && !This.IsReadOnly && !This.Selection.IsTableCellRange)
src\Framework\System\windows\Documents\TextEditorTyping.cs (7)
924if (This.Selection.IsTableCellRange) 950if (textRange.IsTableCellRange) 982if (This.Selection.IsTableCellRange) 1012if (textRange.IsTableCellRange) 1058if (This.Selection.IsTableCellRange || !This.AcceptsReturn) 1077if (This.Selection.IsTableCellRange || !This.AcceptsReturn || !This.UiScope.IsKeyboardFocused) 1430if (This.Selection.IsTableCellRange)
src\Framework\System\Windows\Documents\TextRange.cs (2)
435/// <see cref="ITextRange.IsTableCellRange"/> 1397return ((ITextRange)this).IsTableCellRange;
src\Framework\System\Windows\Documents\TextRangeBase.cs (2)
269if (thisRange.IsTableCellRange) 1255if (!thisRange.IsTableCellRange)
src\Framework\System\Windows\Documents\TextRangeEditTables.cs (1)
46if (range == null || !range.IsTableCellRange)
src\Framework\System\Windows\Documents\TextRangeSerialization.cs (2)
99if (range.IsTableCellRange) 348Invariant.Assert(range.IsTableCellRange, "range is expected to be in IsTableCellRange state");