3 implementations of FindElementByID
PresentationFramework (3)
src\Framework\System\Windows\Documents\DocumentSequence.cs (1)
174UIElement IFixedNavigate.FindElementByID(string elementID, out FixedPage rootFixedPage)
src\Framework\System\Windows\Documents\FixedDocument.cs (1)
220UIElement IFixedNavigate.FindElementByID(string elementID, out FixedPage rootFixedPage)
src\Framework\System\Windows\Documents\FixedPage.cs (1)
865UIElement IFixedNavigate.FindElementByID(string elementID, out FixedPage rootFixedPage)
4 references to FindElementByID
PresentationFramework (4)
src\Framework\System\Windows\Documents\DocumentSequence.cs (1)
205uiElementRet = ((IFixedNavigate)childFixedDoc).FindElementByID(elementID, out rootFixedPage);
src\Framework\System\Windows\Documents\FixedDocument.cs (2)
261uiElementRet = ((IFixedNavigate)fixedPage).FindElementByID(elementID, out rootFixedPage); 275uiElementRet = ((IFixedNavigate)fixedPage).FindElementByID(elementID, out rootFixedPage);
src\Framework\System\Windows\Documents\FixedHyperlink.cs (1)
106targetElement = ((IFixedNavigate)ElementHost).FindElementByID(elementID, out rootFixedPage) as FrameworkElement;