New (UserStatistics constructor)

From m204wiki
Revision as of 17:59, 10 December 2010 by 198.242.244.47 (talk) (Created page with "<span style="font-size:120%; color:black"><b>Create new UserStatistics object</b></span> New constructor Category:System methods <!--DPL??...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Create new UserStatistics object

New is a member of the UserStatistics class.

This method creates a new instance of the UserStatistics class with a snapshot of the user's statistics.

Syntax

  %ustat = New

Syntax terms

%ustat
A UserStatistics object variable to contain the new object instance.

Usage Notes

  • New is a constructor and as such can be called with no object, with an explicit class name, or with an object variable, even if that object is null:
        %ustat = new
        %ustat = %(userStatistics):new
        %ustat = %ustat:new