- Drawing functions, zoom and automatic scrollbars
- Limit
Zoom (Property) In french: Zoom
Syntax <Result>: Integer Value of zoom currently performed in the element. This value corresponds to:    In an Image control: the zoom percentage. In an Organization Chart control: the zoom percentage. Versions 20 and later In a Table, Treeview Table, Pivot Table or Spreadsheet control: the zoom percentage. New in version 20 In a Table, Treeview Table, Pivot Table or Spreadsheet control: the zoom percentage. In a Table, Treeview Table, Pivot Table or Spreadsheet control: the zoom percentage.        In a Map control: to a value found between 1 (display of the entire table) and 21. Versions 21 and later In a window: the zoom percentage. New in version 21 In a window: the zoom percentage. In a window: the zoom percentage. Versions 22 and later In a Word Processing control: the zoom percentage. New in version 22 In a Word Processing control: the zoom percentage. In a Word Processing control: the zoom percentage.    In a PDF Reader control: the zoom percentage.
<Element used>: Control name or window name Name of element to use:    Name of Image control. Name of Organization Chart control.        Name of Map control. Versions 20 and later Name of the Table, TreeView Table, Pivot Table, Spreadsheet or List Box control. New in version 20 Name of the Table, TreeView Table, Pivot Table, Spreadsheet or List Box control. Name of the Table, TreeView Table, Pivot Table, Spreadsheet or List Box control. Versions 21 and later Name of window. New in version 21 Name of window. Name of window. Versions 22 and later Name of Word Processing control. New in version 22 Name of Word Processing control. Name of Word Processing control.    Name of PDF Reader control.
Related Examples:
|
Unit examples (WINDEV): The Image control (display a PDF or a TIFF)
[ + ] Displaying a PDF or TIFF document in the Image control found in a window.
|
|
Unit examples (WEBDEV): The Map control
[ + ] This example explains how to use the Map control of WEBDEV. It can be used to display a map that includes markers as well as an itinerary.
|
|
Unit examples (WINDEV): The Map control
[ + ] Using the Map control of WINDEV. It is used to display a map that includes markers as well as an itinerary.
|
This page is also available for…
|
|
|
| |
| | https://youtu.be/MVrzB-HW_3o
https://windevdesenvolvimento.blogspot.com/2019/05/dicas-2125-windev-webdev-mobile-tabela.html
// btn_AUMENTAR_zoom TABLE_PEDIDO_JUNTA..Zoom+=10 // btn_DIMINUIR_zoom TABLE_PEDIDO_JUNTA..Zoom-=10
|
|
|
|
| |
| |
| |
|
| | MapLicenseGgl("AIzaSyDbSVKYPwB1a-_vPbDzAr6LgAfIj4iW2hc")
PositionWx is geoPosition PositionWx.Latitude = -25.4401779 PositionWx.Longitude = -49.2118695
MarkerWx is Marker MarkerWx.Description = "WX INFORMATICA" MarkerWx.Name = "WX INFORMATICA" MarkerWx.Position = PositionWx
MapAddMarker(GoogleMaps,MarkerWx)
GoogleMaps.DisplayPosition(PositionWx) GoogleMaps..Zoom = 18
|
|
|
|
| |
| |
| |
| |
| |
| |
| | |
|