Difference between revisions of "Application:get"

From GiderosMobile
m
Line 7: Line 7:
  
 
<source lang="lua">
 
<source lang="lua">
-- print list of all available settings
+
-- print a list of all available settings
 
print(application:get("help"))
 
print(application:get("help"))
 +
 +
--[[
 +
Accepted value for Desktop's application:get()
 +
- [x,y] windowPosition
 +
- [w,h] windowSize
 +
- [w,h] screenSize
 +
- [x,y] cursorPosition
 +
- [text] clipboard
 +
- [text] windowTitle
 +
- [path] directory(where//help)
 +
- [path] openDirectoryDialog(title|path//help)
 +
- [path] openFileDialog(title|path|extensions//help)
 +
- [path] saveFileDialog(title|path|extensions//help)
 +
- [path] documentDirectory
 +
- [path] temporaryDirectory
 +
0
 +
]]
 
</source>
 
</source>
 +
  
 
{{Application}}
 
{{Application}}

Revision as of 07:59, 4 January 2020

Available since: Gideros 2015.7

Class: Application

Description

Returns the state of the desktop setting provided as string parameter.

-- print a list of all available settings
print(application:get("help"))

--[[
	Accepted value for Desktop's application:get()
	- [x,y] windowPosition
	- [w,h] windowSize
	- [w,h] screenSize
	- [x,y] cursorPosition
	- [text] clipboard
	- [text] windowTitle
	- [path] directory(where//help)
	- [path] openDirectoryDialog(title|path//help)
	- [path] openFileDialog(title|path|extensions//help)
	- [path] saveFileDialog(title|path|extensions//help)
	- [path] documentDirectory
	- [path] temporaryDirectory
	0
]]