3 instantiations of LineBreak
PresentationFramework (3)
System\Windows\Documents\TextRangeEdit.cs (1)
695LineBreak lineBreak = new LineBreak();
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
6157bamlType.DefaultConstructor = delegate() { return new System.Windows.Documents.LineBreak(); };
System\Windows\Markup\KnownTypes.cs (1)
1366case KnownElements.LineBreak: o = new System.Windows.Documents.LineBreak(); break;
19 references to LineBreak
PresentationFramework (19)
MS\Internal\PtsHost\LineBase.cs (1)
160else if (element is LineBreak)
MS\Internal\Text\ComplexLine.cs (1)
388if (element is LineBreak)
System\Windows\Documents\Paragraph.cs (1)
256typeof(LineBreak).IsAssignableFrom(navigator.ParentType) ||
System\Windows\Documents\TextPointer.cs (1)
1456/// a <see cref="LineBreak"/> element inserted by this method.
System\Windows\Documents\TextPointerBase.cs (3)
649return IsNextToRichBreak(thisPosition, direction, typeof(LineBreak)); 1515Invariant.Assert(lineBreakType == null || lineBreakType == typeof(LineBreak) || lineBreakType == typeof(Paragraph)); 1525if (typeof(LineBreak).IsAssignableFrom(neighbor) ||
System\Windows\Documents\TextRangeBase.cs (1)
692else if (typeof(LineBreak).IsAssignableFrom(elementType))
System\Windows\Documents\TextRangeEdit.cs (3)
680if (!TextSchema.IsValidChild(/*position*/position, /*childType*/typeof(LineBreak))) 692Invariant.Assert(TextSchema.IsValidChild(/*position*/position, /*childType*/typeof(LineBreak)), 695LineBreak lineBreak = new LineBreak();
System\Windows\Documents\TextRangeEditTables.cs (1)
857if (parent is LineBreak || parent is InlineUIContainer)
System\Windows\Documents\TextSchema.cs (4)
340typeof(LineBreak).IsAssignableFrom(type)); 389else if (typeof(LineBreak).IsAssignableFrom(type)) 391return typeof(LineBreak); 503else if (typeof(LineBreak).IsAssignableFrom(type))
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
445case 351: t = () => typeof(LineBreak); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
6155typeof(System.Windows.Documents.LineBreak),
System\Windows\Markup\KnownTypes.cs (1)
5905case KnownElements.LineBreak: t = typeof(System.Windows.Documents.LineBreak); break;