Parameters
- zoomLevel
- The zoom level.
Exception | Description |
---|---|
System.ArgumentException | The zoom level is not within the allowed range. |
//Get the active table view. var tableView = TableView.Active; if (tableView == null) return; // change zoom level if (tableView.ZoomLevel > 100) tableView.SetZoomLevel(100); else tableView.SetZoomLevel(200);
Target Platforms: Windows 11, Windows 10