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