Difference between revisions of "Application:setOrientation"

From GiderosMobile
m (→‎Description: fixed some html tags)
(3 intermediate revisions by the same user not shown)
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]]
+
Sets the orientation of the application.
<br/>
+
<source lang="lua">
=== <translate>Description</translate> ===
+
application:setOrientation(orientation)
<translate>
+
</source>
Sets the orientation of the application. Accepted values are:
+
 
 +
 
 +
Accepted values for '''orientation''' are:
 
* Application.PORTRAIT
 
* Application.PORTRAIT
 
* Application.PORTRAIT_UPSIDE_DOWN
 
* Application.PORTRAIT_UPSIDE_DOWN
 
* Application.LANDSCAPE_LEFT
 
* Application.LANDSCAPE_LEFT
 
* Application.LANDSCAPE_RIGHT
 
* Application.LANDSCAPE_RIGHT
</translate>
+
 
<br/>
+
=== Parameters ===
<source lang="lua">
+
'''orientation''': (string) sets the orientation<br/>
application:setOrientation(orientation)
+
 
</source>
+
=== Examples ===
=== <translate>Parameters</translate> ===
 
'''orientation''': (string) <translate></translate>
 
<br/>
 
=== <translate>Examples</translate> ===
 
 
<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
 
application:setOrientation(Application.PORTRAIT_UPSIDE_DOWN) -- the buttons are at the top
 
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_LEFT) -- the buttons are on the right side
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 19:48, 5 December 2020

Available since: Gideros 2011.6
Class: Application

Description

Sets the orientation of the application.

application:setOrientation(orientation)


Accepted values for orientation are:

  • Application.PORTRAIT
  • Application.PORTRAIT_UPSIDE_DOWN
  • Application.LANDSCAPE_LEFT
  • Application.LANDSCAPE_RIGHT

Parameters

orientation: (string) sets the orientation

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