Section: Visualization Toolkit Graphics Classes
vtkVectorText generates higher quality polygonal representations of characters.
To create an instance of class vtkTextSource, simply invoke its constructor as follows
obj = vtkTextSource
obj
is an instance of the vtkTextSource class.
string = obj.GetClassName ()
int = obj.IsA (string name)
vtkTextSource = obj.NewInstance ()
vtkTextSource = obj.SafeDownCast (vtkObject o)
obj.SetText (string )
- Set/Get the text to be drawn.
string = obj.GetText ()
- Set/Get the text to be drawn.
obj.SetBacking (int )
- Controls whether or not a background is drawn with the text.
int = obj.GetBacking ()
- Controls whether or not a background is drawn with the text.
obj.BackingOn ()
- Controls whether or not a background is drawn with the text.
obj.BackingOff ()
- Controls whether or not a background is drawn with the text.
obj.SetForegroundColor (double , double , double )
- Set/Get the foreground color. Default is white (1,1,1). ALpha is always 1.
obj.SetForegroundColor (double a[3])
- Set/Get the foreground color. Default is white (1,1,1). ALpha is always 1.
double = obj. GetForegroundColor ()
- Set/Get the foreground color. Default is white (1,1,1). ALpha is always 1.
obj.SetBackgroundColor (double , double , double )
- Set/Get the background color. Default is black (0,0,0). Alpha is always 1.
obj.SetBackgroundColor (double a[3])
- Set/Get the background color. Default is black (0,0,0). Alpha is always 1.
double = obj. GetBackgroundColor ()
- Set/Get the background color. Default is black (0,0,0). Alpha is always 1.