Get the WebBrowser behind the RadHtmlPlaceholder control in an out-of-browser scenario

RadHtmlPlaceholder uses WebBrowser control internally to render its content. You can get the browser which is used in out-of-browser scenarios through the WebBrowser property of the placeholder component.

XAML

<telerik:RadHtmlPlaceholder x:Name=”placeholder” Source=”http://www.bing.com/” />

C#

WebBrowser browser = this.placeholder.WebBrowser;

VB.NET

Dim browser As WebBrowser = Me.placeholder.WebBrowser

See Also

In this article