2 types derived from AnchoredBlock
PresentationFramework (2)
System\Windows\Documents\Figure.cs (1)
19public class Figure : AnchoredBlock
System\Windows\Documents\Floater.cs (1)
18public class Floater : AnchoredBlock
42 references to AnchoredBlock
PresentationFramework (42)
MS\Internal\PtsHost\MbpInfo.cs (2)
30if (o is Block || o is AnchoredBlock || o is TableCell || o is ListItem) 118if (parent is ListItem || parent is TableCell || parent is AnchoredBlock)
MS\Internal\PtsHost\SubpageParagraph.cs (3)
164Invariant.Assert(Element is TableCell || Element is AnchoredBlock); 349Invariant.Assert(Element is TableCell || Element is AnchoredBlock); 509Invariant.Assert(Element is TableCell || Element is AnchoredBlock);
MS\Internal\PtsHost\TextParagraph.cs (2)
1206AnchoredBlock objectElement = null; 1210objectElement = (AnchoredBlock)(_attachedObjects[0].Element);
MS\Internal\Text\DynamicPropertyReader.cs (1)
342if (!(element is Inline) || element is AnchoredBlock)
System\Windows\Documents\AnchoredBlock.cs (7)
102typeof(AnchoredBlock), 121typeof(AnchoredBlock), 140typeof(AnchoredBlock), 159typeof(AnchoredBlock), 177Block.TextAlignmentProperty.AddOwner(typeof(AnchoredBlock)); 192Block.LineHeightProperty.AddOwner(typeof(AnchoredBlock)); 208Block.LineStackingStrategyProperty.AddOwner(typeof(AnchoredBlock));
System\Windows\Documents\Paragraph.cs (1)
257typeof(AnchoredBlock).IsAssignableFrom(navigator.ParentType))
System\Windows\Documents\TextPointer.cs (1)
3873while (parentBlock is Inline && !(parentBlock is AnchoredBlock))
System\Windows\Documents\TextPointerBase.cs (1)
303return IsInAncestorScope(position, typeof(TextElement), typeof(AnchoredBlock));
System\Windows\Documents\TextRangeBase.cs (10)
716if (typeof(AnchoredBlock).IsAssignableFrom(elementType)) 1255!typeof(AnchoredBlock).IsAssignableFrom(start.ParentType)) 1831while (outerAnchoredBlock != null && !typeof(AnchoredBlock).IsAssignableFrom(outerAnchoredBlock.GetType())) 1839AnchoredBlock innerAnchoredBlock = null; 1843if (innerElement is AnchoredBlock) 1845innerAnchoredBlock = (AnchoredBlock)innerElement; 1873while (outerAnchoredBlock != null && !typeof(AnchoredBlock).IsAssignableFrom(outerAnchoredBlock.GetType())) 1881AnchoredBlock innerAnchoredBlock = null; 1885if (innerElement is AnchoredBlock) 1887innerAnchoredBlock = (AnchoredBlock)innerElement;
System\Windows\Documents\TextRangeEdit.cs (1)
1956else if ((commonAncestor is Inline && !(commonAncestor is AnchoredBlock)) ||
System\Windows\Documents\TextRangeSerialization.cs (1)
666typeof(Inline).IsAssignableFrom(contextType) && !typeof(AnchoredBlock).IsAssignableFrom(contextType))
System\Windows\Documents\TextSchema.cs (5)
132typeof(AnchoredBlock).IsAssignableFrom(childType)) 224typeof(AnchoredBlock).IsAssignableFrom(childType)) 823!typeof(AnchoredBlock).IsAssignableFrom(childType); 830!typeof(AnchoredBlock).IsAssignableFrom(childType); 900nextElement is AnchoredBlock)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
104case 8: t = () => typeof(AnchoredBlock); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
4060Type type = typeof(System.Windows.Documents.AnchoredBlock); 4062this.GetXamlType(typeof(System.Windows.Documents.AnchoredBlock)), // DeclaringType 4068bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.AnchoredBlock)target).Blocks; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
1698typeof(System.Windows.Documents.AnchoredBlock),
System\Windows\Markup\KnownTypes.cs (2)
2471return (o as System.Windows.Documents.AnchoredBlock).Blocks; 5562case KnownElements.AnchoredBlock: t = typeof(System.Windows.Documents.AnchoredBlock); break;