Difference between revisions of "Application:setOrientation"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === <br /> Sets the orientation of the application. Accepted values are:<br /> <br /> <ul><br /> &lt...")
 
m (Text replacement - "</source" to "</syntaxhighlight")
 
(12 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 />
+
<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 />
+
* Application.LANDSCAPE_LEFT
<source lang="lua">
+
* Application.LANDSCAPE_RIGHT
= Application:setOrientation(orientation,)
+
 
</source>
+
=== Parameters ===
'''orientation:''' (string) ''''''<br/>
+
'''orientation''': (string) sets the orientation<br/>
 +
 
 +
=== Examples ===
 +
<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.LANDSCAPE_LEFT) -- the buttons are on the right side
 +
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