Difference between revisions of "Application:getDeviceOrientation"

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

Revision as of 00:20, 18 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"