Difference between revisions of "Application:setOrientation"

From GiderosMobile
m (Text replacement - "</source" to "</syntaxhighlight")
 
(3 intermediate revisions by 2 users not shown)
Line 3: Line 3:
  
 
=== Description ===
 
=== Description ===
Sets the orientation of the application. Accepted values are:
+
Sets the orientation of the application.
 +
<syntaxhighlight lang="lua">
 +
application:setOrientation(orientation)
 +
</syntaxhighlight>
 +
 
 +
 
 +
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
 
 
<source lang="lua">
 
application:setOrientation(orientation)
 
</source>
 
  
 
=== Parameters ===
 
=== Parameters ===
'''orientation''': (string) <br/>
+
'''orientation''': (string) sets the orientation<br/>
  
 
=== Examples ===
 
=== Examples ===
<source lang="lua">
+
<syntaxhighlight 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>
+
</syntaxhighlight>
  
 
{{Application}}
 
{{Application}}

Latest revision as of 16:36, 12 July 2023

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