Difference between revisions of "Application:setOrientation"

From GiderosMobile
m (Text replacement - "</source" to "</syntaxhighlight")
 
(8 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>Description</translate> ===
+
 
<translate><br />
+
=== Description ===
Sets the orientation of the application. Accepted values are:<br />
+
Sets the orientation of the application.
<br />
+
<syntaxhighlight lang="lua">
&lt;ul&gt;<br />
+
application:setOrientation(orientation)
&lt;li&gt;Application.PORTRAIT = &quot;portrait&quot;&lt;/li&gt;<br />
+
</syntaxhighlight>
&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 />
+
Accepted values for '''orientation''' are:
&lt;/ul&gt;<br />
+
* Application.PORTRAIT
<br /></translate>
+
* Application.PORTRAIT_UPSIDE_DOWN
<source lang="lua">
+
* Application.LANDSCAPE_LEFT
Application:setOrientation(orientation)
+
* Application.LANDSCAPE_RIGHT
</source>
+
 
=== <translate>Parameters</translate> ===
+
=== Parameters ===
'''orientation''': (string) <translate></translate> <br/>
+
'''orientation''': (string) sets the orientation<br/>
=== <translate>Examples</translate> ===
+
 
'''Example'''<br/>
+
=== Examples ===
<source lang="lua">application:setOrientation(Application.PORTRAIT)             -- the buttons are on the bottom
+
<syntaxhighlight 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
 +
</syntaxhighlight>
 +
 
 +
{{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