Difference between revisions of "Application:setScaleMode"

From GiderosMobile
m (Text replacement - "</source" to "</syntaxhighlight")
 
(3 intermediate revisions by 2 users not shown)
Line 3: Line 3:
  
 
=== Description ===
 
=== Description ===
Sets the automatic scale mode of the application. Accepted values are:
+
Sets the automatic scale mode of the application.
 +
<syntaxhighlight lang="lua">
 +
application:setScaleMode(scaleMode)
 +
</syntaxhighlight>
 +
 
 +
 
 +
Accepted values for '''scaleMode''' are:
 
* Application.NO_SCALE
 
* Application.NO_SCALE
 
* Application.CENTER
 
* Application.CENTER
Line 12: Line 18:
 
* Application.FIT_WIDTH
 
* Application.FIT_WIDTH
 
* Application.FIT_HEIGHT
 
* Application.FIT_HEIGHT
 
 
<source lang="lua">
 
application:setScaleMode(scaleMode)
 
</source>
 
  
 
=== Parameters ===
 
=== Parameters ===
'''scaleMode''': (string) <br/>
+
'''scaleMode''': (string) the scale mode to apply<br/>
  
 
{{Application}}
 
{{Application}}

Latest revision as of 18:10, 12 July 2023

Available since: Gideros 2012.2.2
Class: Application

Description

Sets the automatic scale mode of the application.

application:setScaleMode(scaleMode)


Accepted values for scaleMode are:

  • Application.NO_SCALE
  • Application.CENTER
  • Application.PIXEL_PERFECT
  • Application.LETTERBOX
  • Application.CROP
  • Application.STRETCH
  • Application.FIT_WIDTH
  • Application.FIT_HEIGHT

Parameters

scaleMode: (string) the scale mode to apply