Difference between revisions of "Application:setOrientation"

From GiderosMobile
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
__NOTOC__
 
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Available since:''' Gideros 2011.6<br/>
 +
'''Class:''' [[Application]]<br/>
 +
 
=== Description ===
 
=== Description ===
<br />
+
Sets the orientation of the application.
Sets the orientation of the application. Accepted values are:<br />
 
<br />
 
&lt;ul&gt;<br />
 
&lt;li&gt;Application.PORTRAIT = &quot;portrait&quot;&lt;/li&gt;<br />
 
&lt;li&gt;Application.PORTRAIT_UPSIDE_DOWN = &quot;portraitUpsideDown&quot;&lt;/li&gt;<br />
 
&lt;li&gt;Application.LANDSCAPE_LEFT = &quot;landscapeLeft&quot;&lt;/li&gt;<br />
 
&lt;li&gt;Application.LANDSCAPE_RIGHT = &quot;landscapeRight&quot;&lt;/li&gt;<br />
 
&lt;/ul&gt;<br />
 
<br />
 
 
<source lang="lua">
 
<source lang="lua">
Application:setOrientation(orientation)
+
application:setOrientation(orientation)
 
</source>
 
</source>
'''orientation''': (string)  ''''''<br/>
+
 
 +
 
 +
Accepted values for '''orientation''' are:
 +
* Application.PORTRAIT
 +
* Application.PORTRAIT_UPSIDE_DOWN
 +
* Application.LANDSCAPE_LEFT
 +
* Application.LANDSCAPE_RIGHT
 +
 
 +
=== Parameters ===
 +
'''orientation''': (string) sets the orientation<br/>
 +
 
 +
=== Examples ===
 +
<source lang="lua">
 +
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
 +
</source>
 +
 
 +
{{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