CImageSet:new


The new method creates an instance of the CImageSet class. You must call new before using any class methods or properties.

Note: This method's name uses all lower case to present it as the analog of the C++ new operator. Generally, the names of class methods begin with an uppercase letter but new and delete are different.

Example

S = CImageSet:new()

-- create a new instance of S of the CImageSet class.

  ...

-- other uses of the class go here, between new and delete.

S:delete()

-- delete the object and its associated memory.

Related Topics

CImageSet class, delete, new_imageset


Mira Pro x64 Script User's Guide, Copyright Ⓒ 2023 Mirametrics, Inc. All Rights Reserved.