Difference between revisions of "Application:getDeviceOrientation"

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