Difference between revisions of "Application:getDeviceSafeArea"
From GiderosMobile
Line 2: | Line 2: | ||
'''Available since:''' Gideros 2017.11.3<br/> | '''Available since:''' Gideros 2017.11.3<br/> | ||
=== Description === | === Description === | ||
− | <br /> | + | <translate><br /> |
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, | 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.<br /> | either in physical coordinates or in logical coordinates.<br /> | ||
− | <br /> | + | <br /></translate> |
<source lang="lua"> | <source lang="lua"> | ||
(number), (number), (number), (number) = Application:getDeviceSafeArea(logical) | (number), (number), (number), (number) = Application:getDeviceSafeArea(logical) | ||
</source> | </source> | ||
=== Parameters === | === Parameters === | ||
− | '''logical''': (boolean) Returns the margin in logical scale if set to true. '''optional'''<br/> | + | '''logical''': (boolean) <translate>Returns the margin in logical scale if set to true.</translate> '''optional'''<br/> |
=== Return values === | === Return values === | ||
− | '''Returns''' (number) Minimum x<br/> | + | '''Returns''' (number) <translate>Minimum x</translate><br/> |
− | '''Returns''' (number) Minimum y<br/> | + | '''Returns''' (number) <translate>Minimum y</translate><br/> |
− | '''Returns''' (number) Maximum x<br/> | + | '''Returns''' (number) <translate>Maximum x</translate><br/> |
− | '''Returns''' (number) Maximum y<br/> | + | '''Returns''' (number) <translate>Maximum y</translate><br/> |
Revision as of 13:33, 23 August 2018
Available since: Gideros 2017.11.3
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