New (Screen constructor): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
(No difference)

Revision as of 16:58, 16 February 2011

Create new Screen instance (Screen class)


This shared function instantiates a Screen object.

  %screen = New
New syntax
%screen
A declared Screen object variable.
Usage Notes

New is a constructor and as such it can be called with no object, with an explicit class name, or with an object variable, even if that object is null:

%scr = new
%scr = %(screen):new
%scr = %scr:new

See also