2 types derived from AnchoredBlock
PresentationFramework (2)
System\Windows\Documents\Figure.cs (1)
16public class Figure : AnchoredBlock
System\Windows\Documents\Floater.cs (1)
16public class Floater : AnchoredBlock
42 references to AnchoredBlock
PresentationFramework (42)
MS\Internal\PtsHost\MbpInfo.cs (2)
27if (o is Block || o is AnchoredBlock || o is TableCell || o is ListItem) 115if (parent is ListItem || parent is TableCell || parent is AnchoredBlock)
MS\Internal\PtsHost\SubpageParagraph.cs (3)
148Invariant.Assert(Element is TableCell || Element is AnchoredBlock); 333Invariant.Assert(Element is TableCell || Element is AnchoredBlock); 493Invariant.Assert(Element is TableCell || Element is AnchoredBlock);
MS\Internal\PtsHost\TextParagraph.cs (2)
1176AnchoredBlock objectElement = null; 1180objectElement = (AnchoredBlock)(_attachedObjects[0].Element);
MS\Internal\Text\DynamicPropertyReader.cs (1)
336if (!(element is Inline) || element is AnchoredBlock)
System\Windows\Documents\AnchoredBlock.cs (7)
91typeof(AnchoredBlock), 110typeof(AnchoredBlock), 129typeof(AnchoredBlock), 148typeof(AnchoredBlock), 166Block.TextAlignmentProperty.AddOwner(typeof(AnchoredBlock)); 181Block.LineHeightProperty.AddOwner(typeof(AnchoredBlock)); 197Block.LineStackingStrategyProperty.AddOwner(typeof(AnchoredBlock));
System\Windows\Documents\Paragraph.cs (1)
256typeof(AnchoredBlock).IsAssignableFrom(navigator.ParentType))
System\Windows\Documents\TextPointer.cs (1)
3867while (parentBlock is Inline && !(parentBlock is AnchoredBlock))
System\Windows\Documents\TextPointerBase.cs (1)
300return IsInAncestorScope(position, typeof(TextElement), typeof(AnchoredBlock));
System\Windows\Documents\TextRangeBase.cs (10)
712if (typeof(AnchoredBlock).IsAssignableFrom(elementType)) 1251!typeof(AnchoredBlock).IsAssignableFrom(start.ParentType)) 1826while (outerAnchoredBlock != null && !typeof(AnchoredBlock).IsAssignableFrom(outerAnchoredBlock.GetType())) 1834AnchoredBlock innerAnchoredBlock = null; 1838if (innerElement is AnchoredBlock) 1840innerAnchoredBlock = (AnchoredBlock)innerElement; 1868while (outerAnchoredBlock != null && !typeof(AnchoredBlock).IsAssignableFrom(outerAnchoredBlock.GetType())) 1876AnchoredBlock innerAnchoredBlock = null; 1880if (innerElement is AnchoredBlock) 1882innerAnchoredBlock = (AnchoredBlock)innerElement;
System\Windows\Documents\TextRangeEdit.cs (1)
1953else if ((commonAncestor is Inline && !(commonAncestor is AnchoredBlock)) ||
System\Windows\Documents\TextRangeSerialization.cs (1)
659typeof(Inline).IsAssignableFrom(contextType) && !typeof(AnchoredBlock).IsAssignableFrom(contextType))
System\Windows\Documents\TextSchema.cs (5)
130typeof(AnchoredBlock).IsAssignableFrom(childType)) 222typeof(AnchoredBlock).IsAssignableFrom(childType)) 816!typeof(AnchoredBlock).IsAssignableFrom(childType); 823!typeof(AnchoredBlock).IsAssignableFrom(childType); 893nextElement is AnchoredBlock)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
101case 8: t = () => typeof(AnchoredBlock); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
4267Type type = typeof(System.Windows.Documents.AnchoredBlock); 4269this.GetXamlType(typeof(System.Windows.Documents.AnchoredBlock)), // DeclaringType 4276GetDelegate = delegate (object target) { return ((System.Windows.Documents.AnchoredBlock)target).Blocks; },
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
1707typeof(System.Windows.Documents.AnchoredBlock),
System\Windows\Markup\KnownTypes.cs (2)
2464return (o as System.Windows.Documents.AnchoredBlock).Blocks; 5555case KnownElements.AnchoredBlock: t = typeof(System.Windows.Documents.AnchoredBlock); break;