Difference between revisions of "Application:getDeviceOrientation"

From GiderosMobile
m
(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 ===
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">
 
<source lang="lua">
(string) = Application:getDeviceOrientation()
+
(string) = application:getDeviceOrientation()
 
</source>
 
</source>
'''Returns''' (string) Values "portrait", "portraitUpsideDown", "landscapeLeft", "landscapeRight"<br/>
+
 
 +
=== Return values ===
 +
'''Returns''' (string) values can be: "portrait", "portraitUpsideDown", "landscapeLeft", "landscapeRight"
 +
 
 +
{{Application}}

Revision as of 23:20, 17 December 2021

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"