2 types derived from AnchoredBlock
PresentationFramework (2)
src\Framework\System\Windows\Documents\Figure.cs (1)
19public class Figure : AnchoredBlock
src\Framework\System\Windows\Documents\Floater.cs (1)
18public class Floater : AnchoredBlock
42 references to AnchoredBlock
PresentationFramework (42)
src\Framework\MS\Internal\PtsHost\MbpInfo.cs (2)
31if (o is Block || o is AnchoredBlock || o is TableCell || o is ListItem) 119if (parent is ListItem || parent is TableCell || parent is AnchoredBlock)
src\Framework\MS\Internal\PtsHost\SubpageParagraph.cs (3)
177Invariant.Assert(Element is TableCell || Element is AnchoredBlock); 374Invariant.Assert(Element is TableCell || Element is AnchoredBlock); 543Invariant.Assert(Element is TableCell || Element is AnchoredBlock);
src\Framework\MS\Internal\PtsHost\TextParagraph.cs (2)
1214AnchoredBlock objectElement = null; 1218objectElement = (AnchoredBlock)(_attachedObjects[0].Element);
src\Framework\MS\Internal\Text\DynamicPropertyReader.cs (1)
345if (!(element is Inline) || element is AnchoredBlock)
src\Framework\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));
src\Framework\System\Windows\Documents\Paragraph.cs (1)
264typeof(AnchoredBlock).IsAssignableFrom(navigator.ParentType))
src\Framework\System\Windows\Documents\TextPointer.cs (1)
3899while (parentBlock is Inline && !(parentBlock is AnchoredBlock))
src\Framework\System\Windows\Documents\TextPointerBase.cs (1)
305return IsInAncestorScope(position, typeof(TextElement), typeof(AnchoredBlock));
src\Framework\System\Windows\Documents\TextRangeBase.cs (10)
727if (typeof(AnchoredBlock).IsAssignableFrom(elementType)) 1266!typeof(AnchoredBlock).IsAssignableFrom(start.ParentType)) 1859while (outerAnchoredBlock != null && !typeof(AnchoredBlock).IsAssignableFrom(outerAnchoredBlock.GetType())) 1867AnchoredBlock innerAnchoredBlock = null; 1871if (innerElement is AnchoredBlock) 1873innerAnchoredBlock = (AnchoredBlock)innerElement; 1901while (outerAnchoredBlock != null && !typeof(AnchoredBlock).IsAssignableFrom(outerAnchoredBlock.GetType())) 1909AnchoredBlock innerAnchoredBlock = null; 1913if (innerElement is AnchoredBlock) 1915innerAnchoredBlock = (AnchoredBlock)innerElement;
src\Framework\System\Windows\Documents\TextRangeEdit.cs (1)
1958else if ((commonAncestor is Inline && !(commonAncestor is AnchoredBlock)) ||
src\Framework\System\Windows\Documents\TextRangeSerialization.cs (1)
673typeof(Inline).IsAssignableFrom(contextType) && !typeof(AnchoredBlock).IsAssignableFrom(contextType))
src\Framework\System\Windows\Documents\TextSchema.cs (5)
134typeof(AnchoredBlock).IsAssignableFrom(childType)) 226typeof(AnchoredBlock).IsAssignableFrom(childType)) 825!typeof(AnchoredBlock).IsAssignableFrom(childType); 832!typeof(AnchoredBlock).IsAssignableFrom(childType); 902nextElement is AnchoredBlock)
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
100case 8: t = () => typeof(AnchoredBlock); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
4035Type type = typeof(System.Windows.Documents.AnchoredBlock); 4037this.GetXamlType(typeof(System.Windows.Documents.AnchoredBlock)), // DeclaringType 4043bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.AnchoredBlock)target).Blocks; };
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
1694typeof(System.Windows.Documents.AnchoredBlock),
src\Framework\System\Windows\Markup\KnownTypes.cs (2)
2464return (o as System.Windows.Documents.AnchoredBlock).Blocks; 5552case KnownElements.AnchoredBlock: t = typeof(System.Windows.Documents.AnchoredBlock); break;