3 instantiations of LineBreak
PresentationFramework (3)
System\Windows\Documents\TextRangeEdit.cs (1)
694LineBreak lineBreak = new LineBreak();
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
6737DefaultConstructor = delegate () { return new System.Windows.Documents.LineBreak(); },
System\Windows\Markup\KnownTypes.cs (1)
1359case KnownElements.LineBreak: o = new System.Windows.Documents.LineBreak(); break;
19 references to LineBreak
PresentationFramework (19)
MS\Internal\PtsHost\LineBase.cs (1)
155else if (element is LineBreak)
MS\Internal\Text\ComplexLine.cs (1)
387if (element is LineBreak)
System\Windows\Documents\Paragraph.cs (1)
255typeof(LineBreak).IsAssignableFrom(navigator.ParentType) ||
System\Windows\Documents\TextPointer.cs (1)
1455/// a <see cref="LineBreak"/> element inserted by this method.
System\Windows\Documents\TextPointerBase.cs (3)
648return IsNextToRichBreak(thisPosition, direction, typeof(LineBreak)); 1514Invariant.Assert(lineBreakType == null || lineBreakType == typeof(LineBreak) || lineBreakType == typeof(Paragraph)); 1524if (typeof(LineBreak).IsAssignableFrom(neighbor) ||
System\Windows\Documents\TextRangeBase.cs (1)
691else if (typeof(LineBreak).IsAssignableFrom(elementType))
System\Windows\Documents\TextRangeEdit.cs (3)
679if (!TextSchema.IsValidChild(/*position*/position, /*childType*/typeof(LineBreak))) 691Invariant.Assert(TextSchema.IsValidChild(/*position*/position, /*childType*/typeof(LineBreak)), 694LineBreak lineBreak = new LineBreak();
System\Windows\Documents\TextRangeEditTables.cs (1)
860if (parent is LineBreak || parent is InlineUIContainer)
System\Windows\Documents\TextSchema.cs (4)
339typeof(LineBreak).IsAssignableFrom(type)); 388else if (typeof(LineBreak).IsAssignableFrom(type)) 390return typeof(LineBreak); 502else if (typeof(LineBreak).IsAssignableFrom(type))
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
444case 351: t = () => typeof(LineBreak); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
6734typeof(System.Windows.Documents.LineBreak),
System\Windows\Markup\KnownTypes.cs (1)
5898case KnownElements.LineBreak: t = typeof(System.Windows.Documents.LineBreak); break;