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