Man Page for vtkRenderWindowCollection
Table of Contents

NAME

vtkRenderWindowCollection - a list of RenderWindows

SYNOPSIS


#include "/opt/vtk-c++/graphics/vtkRenderWindowCollection.h"

class VTK_EXPORT vtkRenderWindowCollection : public vtkCollection

static vtkRenderWindowCollection *New() {return new vtkRenderWindowCollection;};
const char *GetClassName() {return "vtkRenderWindowCollection";};
void AddItem(vtkRenderWindow *a);
void RemoveItem(vtkRenderWindow *a);
int IsItemPresent(vtkRenderWindow *a);
vtkRenderWindow *GetNextItem();

DESCRIPTION

vtkRenderWindowCollection represents and provides methods to manipulate a list of RenderWindows. The list is unsorted and duplicate entries are not prevented.

SEE ALSO

vtkRenderWindow vtkCollection

SUMMARY

void AddItem(vtkRenderWindow *a)
Add a RenderWindow to the list.

void RemoveItem(vtkRenderWindow *a)
Remove a RenderWindow from the list.

int IsItemPresent(vtkRenderWindow *a)
Determine whether a particular RenderWindow is present. Returns its position in the list.

vtkRenderWindow *GetNextItem()
Get the next RenderWindow in the list. Return NULL when at the end of the list.


Table of Contents