Difference between revisions of "Application:setOrientation"

From GiderosMobile
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
__NOTOC__
+
'''Available since:''' Gideros 2011.6<br/>
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
+
'''Class:''' [[Application]]<br/>
'''<translate>Class</translate>:''' [[Special:MyLanguage/Application|Application]]<br/>
+
 
=== <translate>Description</translate> ===
+
=== Description ===
<translate><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 /></translate>
 
 
<source lang="lua">
 
<source lang="lua">
Application:setOrientation(orientation)
+
application:setOrientation(orientation)
 
</source>
 
</source>
=== <translate>Parameters</translate> ===
+
 
'''orientation''': (string) <translate></translate> <br/>
+
 
=== <translate>Examples</translate> ===
+
Accepted values for '''orientation''' are:
'''Example'''<br/>
+
* Application.PORTRAIT
<source lang="lua">application:setOrientation(Application.PORTRAIT)             -- the buttons are on the bottom
+
* 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.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</source>
+
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