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