Class RadWebBrowserItem
RadWebBrowserItem hosts WebBrowser control to allow using it in the TPF structure.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
[ComVisible(false)]
public class RadWebBrowserItem : RadHostItem, INotifyPropertyChanged, ICustomTypeDescriptor, ISupportSystemSkin, IComponent, IDisposable, IBindableComponent, ISupportDrag, ISupportDrop, IShortcutProvider, IStylableElement, IStylableNode
Constructors
RadWebBrowserItem()
Declaration
public RadWebBrowserItem()
Properties
DocumentText
Gets or Sets the HTML document content.
Declaration
public string DocumentText { get; set; }
Property Value
System.String
|
See Also
DocumentTitle
Gets the HTML document title content.
Declaration
public string DocumentTitle { get; }
Property Value
System.String
|
See Also
Url
Gets or Sets the Url that is to be browsed.
Declaration
public Uri Url { get; set; }
Property Value
System.Uri
|
See Also
WebBrowserControl
Declaration
public WebBrowser WebBrowserControl { get; }
Property Value
System.Windows.Forms.WebBrowser
|
Methods
OnDocumentCompleted(WebBrowserDocumentCompletedEventArgs)
Declaration
protected virtual void OnDocumentCompleted(WebBrowserDocumentCompletedEventArgs e)
Parameters
System.Windows.Forms.WebBrowserDocumentCompletedEventArgs
e
|
OnFileDownload(EventArgs)
Declaration
protected virtual void OnFileDownload(EventArgs e)
Parameters
System.EventArgs
e
|
OnNavigated(WebBrowserNavigatedEventArgs)
OnNavigating(WebBrowserNavigatingEventArgs)
OnNewWindow(CancelEventArgs)
Declaration
protected virtual void OnNewWindow(CancelEventArgs e)
Parameters
System.ComponentModel.CancelEventArgs
e
|
OnPreviewKeyDown(PreviewKeyDownEventArgs)
Declaration
protected virtual void OnPreviewKeyDown(PreviewKeyDownEventArgs e)
Parameters
System.Windows.Forms.PreviewKeyDownEventArgs
e
|
OnProgressChanged(WebBrowserProgressChangedEventArgs)
Declaration
protected virtual void OnProgressChanged(WebBrowserProgressChangedEventArgs e)
Parameters
System.Windows.Forms.WebBrowserProgressChangedEventArgs
e
|
OnSystemColorsChanged(EventArgs)
Declaration
protected virtual void OnSystemColorsChanged(EventArgs e)
Parameters
System.EventArgs
e
|
Events
DocumentCompleted
Fires when document loading has completed.
Declaration
public event WebBrowserDocumentCompletedEventHandler DocumentCompleted
Event Type
System.Windows.Forms.WebBrowserDocumentCompletedEventHandler
|
See Also
FileDownload
Fires when file has been downloaded
Declaration
public event EventHandler FileDownload
Event Type
System.EventHandler
|
See Also
Navigated
Navigating
NewWindow
Fires before new browser window is opened
Declaration
public event CancelEventHandler NewWindow
Event Type
System.ComponentModel.CancelEventHandler
|
See Also
PreviewKeyDown
Fires before System.Windows.Forms.Control.KeyDown event when a key is pressed while focus is on this control.
Declaration
public event PreviewKeyDownEventHandler PreviewKeyDown
Event Type
System.Windows.Forms.PreviewKeyDownEventHandler
|
ProgressChanged
Fires when the RadWebBrowserItem has updated information on the download progress of a document it is navigating to.
Declaration
public event WebBrowserProgressChangedEventHandler ProgressChanged
Event Type
System.Windows.Forms.WebBrowserProgressChangedEventHandler
|
See Also
SystemColorsChanged
Fires when the System Colors change
Declaration
public event EventHandler SystemColorsChanged
Event Type
System.EventHandler
|