2 types derived from AnchoredBlock
PresentationFramework (2)
System\Windows\Documents\Figure.cs (1)
17public class Figure : AnchoredBlock
System\Windows\Documents\Floater.cs (1)
17public class Floater : AnchoredBlock
42 references to AnchoredBlock
PresentationFramework (42)
MS\Internal\PtsHost\MbpInfo.cs (2)
28if (o is Block || o is AnchoredBlock || o is TableCell || o is ListItem) 116if (parent is ListItem || parent is TableCell || parent is AnchoredBlock)
MS\Internal\PtsHost\SubpageParagraph.cs (3)
159Invariant.Assert(Element is TableCell || Element is AnchoredBlock); 344Invariant.Assert(Element is TableCell || Element is AnchoredBlock); 504Invariant.Assert(Element is TableCell || Element is AnchoredBlock);
MS\Internal\PtsHost\TextParagraph.cs (2)
1199AnchoredBlock objectElement = null; 1203objectElement = (AnchoredBlock)(_attachedObjects[0].Element);
MS\Internal\Text\DynamicPropertyReader.cs (1)
336if (!(element is Inline) || element is AnchoredBlock)
System\Windows\Documents\AnchoredBlock.cs (7)
101typeof(AnchoredBlock), 120typeof(AnchoredBlock), 139typeof(AnchoredBlock), 158typeof(AnchoredBlock), 176Block.TextAlignmentProperty.AddOwner(typeof(AnchoredBlock)); 191Block.LineHeightProperty.AddOwner(typeof(AnchoredBlock)); 207Block.LineStackingStrategyProperty.AddOwner(typeof(AnchoredBlock));
System\Windows\Documents\Paragraph.cs (1)
257typeof(AnchoredBlock).IsAssignableFrom(navigator.ParentType))
System\Windows\Documents\TextPointer.cs (1)
3868while (parentBlock is Inline && !(parentBlock is AnchoredBlock))
System\Windows\Documents\TextPointerBase.cs (1)
301return IsInAncestorScope(position, typeof(TextElement), typeof(AnchoredBlock));
System\Windows\Documents\TextRangeBase.cs (10)
713if (typeof(AnchoredBlock).IsAssignableFrom(elementType)) 1252!typeof(AnchoredBlock).IsAssignableFrom(start.ParentType)) 1828while (outerAnchoredBlock != null && !typeof(AnchoredBlock).IsAssignableFrom(outerAnchoredBlock.GetType())) 1836AnchoredBlock innerAnchoredBlock = null; 1840if (innerElement is AnchoredBlock) 1842innerAnchoredBlock = (AnchoredBlock)innerElement; 1870while (outerAnchoredBlock != null && !typeof(AnchoredBlock).IsAssignableFrom(outerAnchoredBlock.GetType())) 1878AnchoredBlock innerAnchoredBlock = null; 1882if (innerElement is AnchoredBlock) 1884innerAnchoredBlock = (AnchoredBlock)innerElement;
System\Windows\Documents\TextRangeEdit.cs (1)
1954else if ((commonAncestor is Inline && !(commonAncestor is AnchoredBlock)) ||
System\Windows\Documents\TextRangeSerialization.cs (1)
660typeof(Inline).IsAssignableFrom(contextType) && !typeof(AnchoredBlock).IsAssignableFrom(contextType))
System\Windows\Documents\TextSchema.cs (5)
131typeof(AnchoredBlock).IsAssignableFrom(childType)) 223typeof(AnchoredBlock).IsAssignableFrom(childType)) 822!typeof(AnchoredBlock).IsAssignableFrom(childType); 829!typeof(AnchoredBlock).IsAssignableFrom(childType); 899nextElement is AnchoredBlock)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
102case 8: t = () => typeof(AnchoredBlock); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
4058Type type = typeof(System.Windows.Documents.AnchoredBlock); 4060this.GetXamlType(typeof(System.Windows.Documents.AnchoredBlock)), // DeclaringType 4066bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.AnchoredBlock)target).Blocks; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
1696typeof(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;