5 implementations of GetRectangles
PresentationFramework (5)
src\Framework\MS\Internal\Documents\UIElementIsland.cs (1)
200ReadOnlyCollection<Rect> IContentHost.GetRectangles(ContentElement child)
src\Framework\MS\Internal\PtsHost\FlowDocumentPage.cs (1)
1229ReadOnlyCollection<Rect> IContentHost.GetRectangles(ContentElement child)
src\Framework\MS\Internal\PtsHost\PageVisual.cs (1)
130ReadOnlyCollection<Rect> IContentHost.GetRectangles(ContentElement child)
src\Framework\System\Windows\Annotations\AnnotationDocumentPaginator.cs (1)
474public ReadOnlyCollection<Rect> GetRectangles(ContentElement child)
src\Framework\System\Windows\Controls\TextBlock.cs (1)
92ReadOnlyCollection<Rect> IContentHost.GetRectangles(ContentElement child)
8 references to GetRectangles
PresentationFramework (8)
src\Framework\MS\Internal\Documents\UIElementIsland.cs (1)
198/// <see cref="IContentHost.GetRectangles"/>
src\Framework\MS\Internal\PtsHost\PageVisual.cs (2)
128/// <see cref="IContentHost.GetRectangles"/> 135return host.GetRectangles(child);
src\Framework\System\Windows\Annotations\AnnotationDocumentPaginator.cs (1)
478return _basePage.GetRectangles(child);
src\Framework\System\Windows\Controls\FlowDocumentScrollViewer.cs (1)
1166rects = ich.GetRectangles((ContentElement)args.TargetObject);
src\Framework\System\Windows\Controls\ScrollViewer.cs (1)
2528ReadOnlyCollection<Rect> rects = contentHost.GetRectangles(contentElement);
src\Framework\System\Windows\Input\KeyboardNavigation.cs (2)
751_contentRects = contentHost.GetRectangles(_adornedContentElement); 2514ReadOnlyCollection<Rect> rects = parentICH.GetRectangles(ce);