Difference between revisions of "Application:getDeviceOrientation"

From GiderosMobile
(prefixindex)
m (Text replacement - "<source" to "<syntaxhighlight")
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
'''Available since:''' Gideros 2014.01<br/>
 
'''Available since:''' Gideros 2014.01<br/>
'''Class:''' [[Application|Application]]<br/>
+
'''Class:''' [[Application]]<br/>
  
 
=== Description ===
 
=== Description ===
Get the device orientation (and not what is that in project properties as done with ''getOrientation'').Check Accelerometer example project for usage.
+
Gets the device orientation (and not what is in project properties as done with ''getOrientation''). Please check Accelerometer example project for usage.
  
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(string) = application:getDeviceOrientation()
 
(string) = application:getDeviceOrientation()
</source>
+
</syntaxhighlight>
  
 
=== Return values ===
 
=== Return values ===
'''Returns''' (string) Values "portrait", "portraitUpsideDown", "landscapeLeft", "landscapeRight"
+
'''Returns''' (string) values can be: "portrait", "portraitUpsideDown", "landscapeLeft", "landscapeRight"
  
----
+
{{Application}}
{{Special:PrefixIndex/Application}}
 
<br/>
 
 
 
{{Special:PrefixIndex/Event.APPLICATION}}
 

Latest revision as of 17:46, 12 July 2023

Available since: Gideros 2014.01
Class: Application

Description

Gets the device orientation (and not what is in project properties as done with getOrientation). Please check Accelerometer example project for usage.

(string) = application:getDeviceOrientation()

Return values

Returns (string) values can be: "portrait", "portraitUpsideDown", "landscapeLeft", "landscapeRight"