Difference between revisions of "Application:getDeviceSafeArea"

From GiderosMobile
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
'''<translate>Available since</translate>:''' Gideros 2017.11.3<br/>
 
'''<translate>Available since</translate>:''' Gideros 2017.11.3<br/>
 +
'''<translate>Class</translate>:''' [[Special:MyLanguage/Application|Application]]<br/>
 
=== <translate>Description</translate> ===
 
=== <translate>Description</translate> ===
 
<translate><br />
 
<translate><br />

Revision as of 10:28, 24 August 2018

Available since: Gideros 2017.11.3
Class: Application

Description


Some screens have non rectangular shapes, in which case it is useful to know the bounds of the safe area, that is area that is guaranteed to be visible and user accessible. This functions returns the minimum and maximum coordinates to use, either in physical coordinates or in logical coordinates.

(number), (number), (number), (number) = Application:getDeviceSafeArea(logical)

Parameters

logical: (boolean) Returns the margin in logical scale if set to true. optional

Return values

Returns (number) Minimum x
Returns (number) Minimum y
Returns (number) Maximum x
Returns (number) Maximum y