Jump to content

Zoom


flaviowmf

Recommended Posts

Olá.

 

Há a possibilidade de dar zoom no browser automaticamente de acordo com o tamanho do form principal minha aplicação ?

 

 

Hello.

There is the possibility to zoom in the browser automatically according to the main form size of my application?

Link to comment
Share on other sites

Obrigado pela resposta.

 

Mas na verdade eu não gostaria/poderia trocar o tamanho do form, gostaria somente de dar o zoom de acordo com o seu tamanho.

 

Há essa possibilidade ?

 

 

Thanks for the answer.

But in fact I would not / could change the form size, would only give the zoom according to their size.

There is this possibility?

Link to comment
Share on other sites

Obrigado pela resposta.

 

Mas na verdade eu não gostaria/poderia trocar o tamanho do form, gostaria somente de dar o zoom de acordo com o seu tamanho.

 

Há essa possibilidade ?

 

 

Thanks for the answer.

 

But in fact I would not / could change the form size, would only give the zoom according to their size.

 

There is this possibility?

 

To control the zoom on a smartphone add on In UniServerModule.custommeta
help something
 
<meta content='True' name='HandheldFriendly' />
<meta content='width=device-width; initial-scale=1.0; maximum-scale=2.0; user-scalable=1;' name='viewport' />
 
 
MainForm.Script
 
 
 
if (document.body) {
   document.body.addEventListener('touchmove',function(event){
  event.preventDefault();
   },false);
}
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...