Difference between revisions of "platform.window:width"
Jump to navigation
Jump to search
(2 intermediate revisions by the same user not shown) | |||
Line 7: | Line 7: | ||
(No arguments) | (No arguments) | ||
− | == Example | + | == Example == |
Below is an example of a program that creates/updates the "theHeight" and "theWidth" global variables whenever the user resizes the widget's frame: | Below is an example of a program that creates/updates the "theHeight" and "theWidth" global variables whenever the user resizes the widget's frame: | ||
<source lang="lua"> | <source lang="lua"> | ||
Line 15: | Line 15: | ||
end | end | ||
</source> | </source> | ||
+ | |||
+ | == See Also == | ||
+ | [[platform.window:height]] | ||
<br /> | <br /> | ||
[[Category:platform.window]] | [[Category:platform.window]] |
Latest revision as of 22:14, 3 September 2011
platform.window:width is a function that is part of platform.window.
This has been introduced in TI-Nspire OS 3.0 (Changes).
Returns the width in pixel of the current display window.
Syntax
platform.window:width()
(No arguments)
Example
Below is an example of a program that creates/updates the "theHeight" and "theWidth" global variables whenever the user resizes the widget's frame:
function on.resize() --Define a function for the event
theWidth = platform.window:width()
theHeight = platform.window:height()
end
See Also