Difference between revisions of "Application:setOrientation"

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