Difference between revisions of "Application:getLogicalBounds"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2017.11.3<br/> === Description === <br /> Returns the minimum and maximum logical space coordinates to cover full screen.<br /> <br />...")
 
m (Text replacement - "</source" to "</syntaxhighlight")
 
(15 intermediate revisions by 3 users not shown)
Line 1: Line 1:
__NOTOC__
 
 
'''Available since:''' Gideros 2017.11.3<br/>
 
'''Available since:''' Gideros 2017.11.3<br/>
 +
'''Class:''' [[Application]]<br/>
 +
 
=== Description ===
 
=== Description ===
<br />
+
Returns the minimum and maximum logical space coordinates to cover full screen.
Returns the minimum and maximum logical space coordinates to cover full screen.<br />
+
<syntaxhighlight lang="lua">
<br />
+
minX, minY, maxX, maxY = application:getLogicalBounds()
<source lang="lua">
+
</syntaxhighlight>
(number) (number) (number) (number), = Application:getLogicalBounds()
+
 
</source>
+
=== Return values ===
'''Returns''' (number) Minimum x<br/>
+
'''Returns''' (number) minimum x<br/>
'''Returns''' (number) Minimum y<br/>
+
'''Returns''' (number) minimum y<br/>
'''Returns''' (number) Maximum x<br/>
+
'''Returns''' (number) maximum x<br/>
'''Returns''' (number) Maximum y<br/>
+
'''Returns''' (number) maximum y<br/>
 +
 
 +
=== Example ===
 +
<syntaxhighlight lang="lua">
 +
-- screen size as global variables
 +
myappleft, myapptop, myappright, myappbot = application:getLogicalBounds()
 +
myappwidth, myappheight = myappright - myappleft, myappbot - myapptop
 +
print("app left", myappleft, "app top", myapptop, "app right", myappright, "app bot", myappbot)
 +
print("app width", myappwidth, "app height", myappheight)
 +
</syntaxhighlight>
 +
 
 +
{{Application}}

Latest revision as of 18:00, 12 July 2023

Available since: Gideros 2017.11.3
Class: Application

Description

Returns the minimum and maximum logical space coordinates to cover full screen.

minX, minY, maxX, maxY = application:getLogicalBounds()

Return values

Returns (number) minimum x
Returns (number) minimum y
Returns (number) maximum x
Returns (number) maximum y

Example

-- screen size as global variables
myappleft, myapptop, myappright, myappbot = application:getLogicalBounds()
myappwidth, myappheight = myappright - myappleft, myappbot - myapptop
print("app left", myappleft, "app top", myapptop, "app right", myappright, "app bot", myappbot)
print("app width", myappwidth, "app height", myappheight)