Application:setOrientation

From GiderosMobile
Revision as of 10:46, 23 August 2018 by Hgy29 (talk | contribs)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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 />