Difference between revisions of "Application:setOrientation"

From GiderosMobile
m (→‎Description: fixed some html tags)
Line 1: Line 1:
__NOTOC__
+
'''Available since:''' Gideros 2011.6<br/>
<languages />
+
'''Class:''' [[Application]]<br/>
'''<translate>Available since</translate>:''' Gideros 2011.6
+
 
<br/>
+
=== Description ===
'''<translate>Class</translate>:''' [[Special:MyLanguage/Application|Application]]
 
<br/>
 
=== <translate>Description</translate> ===
 
<translate>
 
 
Sets the orientation of the application. Accepted values are:
 
Sets the orientation of the application. Accepted values are:
 
* Application.PORTRAIT
 
* Application.PORTRAIT
Line 12: Line 8:
 
* Application.LANDSCAPE_LEFT
 
* Application.LANDSCAPE_LEFT
 
* Application.LANDSCAPE_RIGHT
 
* Application.LANDSCAPE_RIGHT
</translate>
+
 
<br/>
 
 
<source lang="lua">
 
<source lang="lua">
 
application:setOrientation(orientation)
 
application:setOrientation(orientation)
 
</source>
 
</source>
=== <translate>Parameters</translate> ===
+
 
'''orientation''': (string) <translate></translate>
+
=== Parameters ===
<br/>
+
'''orientation''': (string) <br/>
=== <translate>Examples</translate> ===
+
 
 +
=== Examples ===
 
<source lang="lua">
 
<source lang="lua">
 
application:setOrientation(Application.PORTRAIT)            -- the buttons are on the bottom
 
application:setOrientation(Application.PORTRAIT)            -- the buttons are on the bottom
Line 27: Line 23:
 
application:setOrientation(Application.LANDSCAPE_RIGHT)      -- the buttons are on the left side
 
application:setOrientation(Application.LANDSCAPE_RIGHT)      -- the buttons are on the left side
 
</source>
 
</source>
<br/>
+
 
<br/>
+
{{Application}}

Revision as of 01:51, 3 December 2019

Available since: Gideros 2011.6
Class: Application

Description

Sets the orientation of the application. Accepted values are:

  • Application.PORTRAIT
  • Application.PORTRAIT_UPSIDE_DOWN
  • Application.LANDSCAPE_LEFT
  • Application.LANDSCAPE_RIGHT
application:setOrientation(orientation)

Parameters

orientation: (string)

Examples

application:setOrientation(Application.PORTRAIT)             -- the buttons are on the bottom
application:setOrientation(Application.PORTRAIT_UPSIDE_DOWN) -- the buttons are at the top
application:setOrientation(Application.LANDSCAPE_LEFT)       -- the buttons are on the right side
application:setOrientation(Application.LANDSCAPE_RIGHT)      -- the buttons are on the left side