DefaultRenderHandler Methods |
The DefaultRenderHandler type exposes the following members.
Name | Description | |
---|---|---|
Dispose |
Dispose of this instance.
| |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetScreenInfo |
Called to allow the client to return a ScreenInfo object with appropriate values.
If null is returned then the rectangle from GetViewRect will be used.
If the rectangle is still empty or invalid popups may not be drawn correctly.
| |
GetScreenPoint |
Called to retrieve the translation from view coordinates to actual screen coordinates.
| |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
GetViewRect |
Called to retrieve the view rectangle which is relative to screen coordinates.
This method must always provide a non-empty rectangle.
| |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
OnAcceleratedPaint |
Called when an element has been rendered to the shared texture handle.
This method is only called when SharedTextureEnabled is set to true
| |
OnCursorChange |
Called when the browser's cursor has changed.
| |
OnImeCompositionRangeChanged |
Called when the IME composition range has changed.
| |
OnPaint |
Called when an element should be painted. Pixel values passed to this method are scaled relative to view coordinates based on the
value of DeviceScaleFactor returned from GetScreenInfo.
This method is only called when SharedTextureEnabled is set to false.
Called on the CEF UI Thread
| |
OnPopupShow |
Called when the browser wants to show or hide the popup widget.
| |
OnPopupSize |
Called when the browser wants to move or resize the popup widget.
| |
OnVirtualKeyboardRequested |
Called when an on-screen keyboard should be shown or hidden for the specified browser.
| |
StartDragging |
Called when the user starts dragging content in the web view. Contextual information about the dragged content is
supplied by dragData. OS APIs that run a system message loop may be used within the StartDragging call.
Don't call any of the IBrowserHost.DragSource*Ended* methods after returning false.
Return true to handle the drag operation. Call DragSourceEndedAt(Int32, Int32, DragOperationsMask) and DragSourceSystemDragEnded either synchronously or asynchronously to inform
the web view that the drag operation has ended.
| |
ToString | Returns a string that represents the current object. (Inherited from Object.) | |
UpdateDragCursor |
Called when the web view wants to update the mouse cursor during a drag & drop operation.
|