New (Screen constructor): Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
{{Template:Screen:New subtitle}} | {{Template:Screen:New subtitle}} | ||
This shared function instantiates a <var>Screen</var> object. | |||
==Syntax== | ==Syntax== |
Revision as of 15:58, 17 August 2011
Create new Screen instance (Screen class)
This shared function instantiates a Screen object.
Syntax
%screen = [%(Screen):]New
Syntax terms
%screen | A declared Screen object variable. |
---|---|
%(Screen) | The optional class name in parentheses denotes a Constructor. See "Usage notes", below, for more information about invoking a Screen Constructor. |
Usage notes
- As described in "Using New or other Constructors", New can be invoked with no object, with an explicit class name, or with an object variable in the class, even if that object is Null:
%screen = new %screen = %(Screen):new %screen = %screen:new