CGridView:delete


The delete method deletes an instance of the CGridView class. Call the class delete method when you are finished working with the class. This does not close the grid window, but rather deletes the script class object that communicates with it.

Syntax

CGridView:delete()

 

Example

 

V = CGridView:new()

-- create a new instance of the CGridView class.

  --

-- do something with the CGridView.

V:delete()

-- delete the object and its associated memory.

Related Topics

new

CGridView class