ChromiumWebBrowserResizeAsync Method  | 
Version 106.0.290 
            Resize the browser
            
 
    Namespace: 
   CefSharp.OffScreen
    Assembly:
   CefSharp.OffScreen (in CefSharp.OffScreen.dll) Version: 106.0.290.0 (106.0.290.0)
Syntaxpublic Task ResizeAsync(
	int width,
	int height,
	float? deviceScaleFactor = null
)
public:
Task^ ResizeAsync(
	int width, 
	int height, 
	Nullable<float> deviceScaleFactor = nullptr
)
Parameters
- width
 - Type: SystemInt32
width - height
 - Type: SystemInt32
height - deviceScaleFactor (Optional)
 - Type: SystemNullableSingle
device scale factor 
Return Value
Type: 
TaskA task that can be awaited and will resolve when the desired size is achieved.
Remarks
            The current implementation is fairly symplistic, it simply resizes the browser
            and resolves the task when the browser starts painting at the desired size.
            
See Also