New (MarksStoreArray constructor)

From m204wiki
Revision as of 18:28, 30 November 2011 by JALWiccan (talk | contribs) (1 revision)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Create new MarksStoreArray instance (MarksStoreArray class)


Syntax

%marksStoreArray = [%(MarksStoreArray Of itemType):]New

Syntax terms

%marksStoreArrayMarksStoreArray object.
(MarksStoreArray) The class name in parentheses denotes a shared method. New can also be invoked via a MarksStoreArray object variable, which may be null.

Usage notes

  • All errors in New result in request cancellation.

Examples

  1. 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:

    %ma = new %ma = %(marksStoreArray of string len 1):new %ma = %ma:new

See also