DataObject.Close

Prototypes

void Close()

Parameters

None

Remarks

This method closes the DataObject and any associated DataView windows. You cannot call any methods on a DataObject after you call its Close method.

Example
mData = { 20 165,
          30 170,
          40 175,
          50 180,
          60 170,
          70 160 };
mVarNames = { "Age", "Weight" };
declare DataObject dobj;
dobj = DataObject.Create( "Sample Data", mVarNames, mData, false );
DataTable.Create( dobj ).ActivateWindow();
pause "Click Resume to continue";
dobj.Close();
See Also

DataView.Close