DxViewer.UpdateZoomAsync(Double) Method
Specifies a zoom percentage.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.Viewer.dll
NuGet Package: DevExpress.Blazor.Viewer
Declaration
Parameters
Name | Type | Description |
---|---|---|
value | Double | The zoom level value. |
Returns
Type | Description |
---|---|
Task | An asynchronous operation that sets the zoom level. |
Remarks
The following code sets the page zoom level to 1.5 (150%):
await reportViewer.UpdateZoomAsync(1.5);
See Also