Difference between revisions of "Application:setOrientation"

From GiderosMobile
Line 15: Line 15:
 
  Application:setOrientation(orientation)
 
  Application:setOrientation(orientation)
 
</source>
 
</source>
'''orientation''': (string)  ''''''<br/>
+
=== Parameters ===
 +
'''orientation''': (string)  <br/>
 +
=== Examples ===
 +
'''Example'''<br/>
 +
<source lang="lua">application:setOrientation(Application.PORTRAIT)            -- the buttons are on the bottom<br />
 +
application:setOrientation(Application.PORTRAIT_UPSIDE_DOWN) -- the buttons are at the top<br />
 +
application:setOrientation(Application.LANDSCAPE_LEFT)      -- the buttons are on the right side<br />
 +
application:setOrientation(Application.LANDSCAPE_RIGHT)      -- the buttons are on the left side<br /></source>

Revision as of 10:46, 23 August 2018

Available since: Gideros 2011.6

Description


Sets the orientation of the application. Accepted values are:

<ul>
<li>Application.PORTRAIT = "portrait"</li>
<li>Application.PORTRAIT_UPSIDE_DOWN = "portraitUpsideDown"</li>
<li>Application.LANDSCAPE_LEFT = "landscapeLeft"</li>
<li>Application.LANDSCAPE_RIGHT = "landscapeRight"</li>
</ul>

 Application:setOrientation(orientation)

Parameters

orientation: (string)

Examples

Example

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