aglHide

Causes the instance of Array Visualizer (if any) associated with array to become invisible.

int aglHide(
  pvoid array
  );

Parameters

array
A pointer to an array either allocated by means of a call to aglAlloc, aglMalloc, or aglMallocEx, or added to the watch list by means of a call to aglStartWatch.

Return Value

Returns the value 0 if the call is successful; any other value indicates failure.

Remarks

The aglHide function causes the instance of Array Visualizer associated with array to become invisible, but it does not close that instance. To close the instance, call aglClose or aglEndWatch. To make the Array Visualizer instance visible, call aglShow. aglHide can be used with arrays created with aglAlloc.

If the Array Viewer instance associated with array was created by using the CAViewer class, rather than aglShow, this routine will have no effect. Use the CAViewer::ShowWindow method instead.

See Also

aglAlloc, aglClose, aglEndWatch, aglMalloc, aglMallocEx, aglShow, aglStartWatch