Section: Visualization Toolkit Common Classes
To create an instance of class vtkOutputWindow, simply invoke its constructor as follows
obj = vtkOutputWindow
obj
is an instance of the vtkOutputWindow class.
string = obj.GetClassName ()
int = obj.IsA (string name)
vtkOutputWindow = obj.NewInstance ()
vtkOutputWindow = obj.SafeDownCast (vtkObject o)
obj.DisplayText (string )
- Display the text. Four virtual methods exist, depending on the type of
message to display. This allows redirection or reformatting of the
messages. The default implementation uses DisplayText for all.
obj.DisplayErrorText (string )
- Display the text. Four virtual methods exist, depending on the type of
message to display. This allows redirection or reformatting of the
messages. The default implementation uses DisplayText for all.
obj.DisplayWarningText (string )
- Display the text. Four virtual methods exist, depending on the type of
message to display. This allows redirection or reformatting of the
messages. The default implementation uses DisplayText for all.
obj.DisplayGenericWarningText (string )
- Display the text. Four virtual methods exist, depending on the type of
message to display. This allows redirection or reformatting of the
messages. The default implementation uses DisplayText for all.
obj.DisplayDebugText (string )
obj.PromptUserOn ()
- If PromptUser is set to true then each time a line of text
is displayed, the user is asked if they want to keep getting
messages.
obj.PromptUserOff ()
- If PromptUser is set to true then each time a line of text
is displayed, the user is asked if they want to keep getting
messages.
obj.SetPromptUser (int )
- If PromptUser is set to true then each time a line of text
is displayed, the user is asked if they want to keep getting
messages.