3 instantiations of LineBreak
PresentationFramework (3)
System\Windows\Documents\TextRangeEdit.cs (1)
697LineBreak lineBreak = new LineBreak();
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
6159bamlType.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)
166else if (element is LineBreak)
MS\Internal\Text\ComplexLine.cs (1)
393if (element is LineBreak)
System\Windows\Documents\Paragraph.cs (1)
256typeof(LineBreak).IsAssignableFrom(navigator.ParentType) ||
System\Windows\Documents\TextPointer.cs (1)
1461/// a <see cref="LineBreak"/> element inserted by this method.
System\Windows\Documents\TextPointerBase.cs (3)
654return IsNextToRichBreak(thisPosition, direction, typeof(LineBreak)); 1520Invariant.Assert(lineBreakType == null || lineBreakType == typeof(LineBreak) || lineBreakType == typeof(Paragraph)); 1530if (typeof(LineBreak).IsAssignableFrom(neighbor) ||
System\Windows\Documents\TextRangeBase.cs (1)
695else if (typeof(LineBreak).IsAssignableFrom(elementType))
System\Windows\Documents\TextRangeEdit.cs (3)
682if (!TextSchema.IsValidChild(/*position*/position, /*childType*/typeof(LineBreak))) 694Invariant.Assert(TextSchema.IsValidChild(/*position*/position, /*childType*/typeof(LineBreak)), 697LineBreak lineBreak = new LineBreak();
System\Windows\Documents\TextRangeEditTables.cs (1)
859if (parent is LineBreak || parent is InlineUIContainer)
System\Windows\Documents\TextSchema.cs (4)
341typeof(LineBreak).IsAssignableFrom(type)); 390else if (typeof(LineBreak).IsAssignableFrom(type)) 392return typeof(LineBreak); 504else if (typeof(LineBreak).IsAssignableFrom(type))
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
447case 351: t = () => typeof(LineBreak); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
6157typeof(System.Windows.Documents.LineBreak),
System\Windows\Markup\KnownTypes.cs (1)
5905case KnownElements.LineBreak: t = typeof(System.Windows.Documents.LineBreak); break;