3 instantiations of LineBreak
PresentationFramework (3)
src\Framework\System\Windows\Documents\TextRangeEdit.cs (1)
699LineBreak lineBreak = new LineBreak();
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
6155bamlType.DefaultConstructor = delegate() { return new System.Windows.Documents.LineBreak(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1367case KnownElements.LineBreak: o = new System.Windows.Documents.LineBreak(); break;
19 references to LineBreak
PresentationFramework (19)
src\Framework\MS\Internal\PtsHost\LineBase.cs (1)
171else if (element is LineBreak)
src\Framework\MS\Internal\Text\ComplexLine.cs (1)
399if (element is LineBreak)
src\Framework\System\Windows\Documents\Paragraph.cs (1)
263typeof(LineBreak).IsAssignableFrom(navigator.ParentType) ||
src\Framework\System\Windows\Documents\TextPointer.cs (1)
1475/// a <see cref="LineBreak"/> element inserted by this method.
src\Framework\System\Windows\Documents\TextPointerBase.cs (3)
656return IsNextToRichBreak(thisPosition, direction, typeof(LineBreak)); 1522Invariant.Assert(lineBreakType == null || lineBreakType == typeof(LineBreak) || lineBreakType == typeof(Paragraph)); 1532if (typeof(LineBreak).IsAssignableFrom(neighbor) ||
src\Framework\System\Windows\Documents\TextRangeBase.cs (1)
706else if (typeof(LineBreak).IsAssignableFrom(elementType))
src\Framework\System\Windows\Documents\TextRangeEdit.cs (3)
684if (!TextSchema.IsValidChild(/*position*/position, /*childType*/typeof(LineBreak))) 696Invariant.Assert(TextSchema.IsValidChild(/*position*/position, /*childType*/typeof(LineBreak)), 699LineBreak lineBreak = new LineBreak();
src\Framework\System\Windows\Documents\TextRangeEditTables.cs (1)
862if (parent is LineBreak || parent is InlineUIContainer)
src\Framework\System\Windows\Documents\TextSchema.cs (4)
343typeof(LineBreak).IsAssignableFrom(type)); 392else if (typeof(LineBreak).IsAssignableFrom(type)) 394return typeof(LineBreak); 506else if (typeof(LineBreak).IsAssignableFrom(type))
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
443case 351: t = () => typeof(LineBreak); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
6153typeof(System.Windows.Documents.LineBreak),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5895case KnownElements.LineBreak: t = typeof(System.Windows.Documents.LineBreak); break;