ActiViz .NET  5.8.0
Public Member Functions | Static Public Member Functions | Public Attributes | Static Public Attributes | Protected Member Functions | Private Member Functions | Static Private Member Functions
Kitware.VTK.vtkTextSource Class Reference

vtkTextSource - create polygonal text More...

Inheritance diagram for Kitware.VTK.vtkTextSource:
[legend]
Collaboration diagram for Kitware.VTK.vtkTextSource:
[legend]

List of all members.

Public Member Functions

 vtkTextSource (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkTextSource ()
 Construct object with no string set and backing enabled.
virtual void BackingOff ()
 Controls whether or not a background is drawn with the text.
virtual void BackingOn ()
 Controls whether or not a background is drawn with the text.
virtual double[] GetBackgroundColor ()
 Set/Get the background color. Default is black (0,0,0). Alpha is always 1.
virtual void GetBackgroundColor (IntPtr data)
 Set/Get the background color. Default is black (0,0,0). Alpha is always 1.
virtual int GetBacking ()
 Controls whether or not a background is drawn with the text.
virtual double[] GetForegroundColor ()
 Set/Get the foreground color. Default is white (1,1,1). ALpha is always 1.
virtual void GetForegroundColor (IntPtr data)
 Set/Get the foreground color. Default is white (1,1,1). ALpha is always 1.
virtual string GetText ()
 Set/Get the text to be drawn.
override int IsA (string type)
 Undocumented Block.
new vtkTextSource NewInstance ()
 Undocumented Block.
virtual void SetBackgroundColor (double _arg1, double _arg2, double _arg3)
 Set/Get the background color. Default is black (0,0,0). Alpha is always 1.
virtual void SetBackgroundColor (IntPtr _arg)
 Set/Get the background color. Default is black (0,0,0). Alpha is always 1.
virtual void SetBacking (int _arg)
 Controls whether or not a background is drawn with the text.
virtual void SetForegroundColor (double _arg1, double _arg2, double _arg3)
 Set/Get the foreground color. Default is white (1,1,1). ALpha is always 1.
virtual void SetForegroundColor (IntPtr _arg)
 Set/Get the foreground color. Default is white (1,1,1). ALpha is always 1.
virtual void SetText (string _arg)
 Set/Get the text to be drawn.

Static Public Member Functions

static new vtkTextSource New ()
 Construct object with no string set and backing enabled.
static new int IsTypeOf (string type)
 Undocumented Block.
static new vtkTextSource SafeDownCast (vtkObjectBase o)
 Undocumented Block.

Public Attributes

new const string MRFullTypeName = "Kitware.VTK.vtkTextSource"
 Automatically generated type registration mechanics.

Static Public Attributes

static new readonly string MRClassNameKey = "13vtkTextSource"
 Automatically generated type registration mechanics.

Protected Member Functions

override void Dispose (bool disposing)
 Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.

Private Member Functions

static internal IntPtr vtkTextSource_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkTextSource_BackingOff_01 (HandleRef pThis)
static internal void vtkTextSource_BackingOn_02 (HandleRef pThis)
static internal IntPtr vtkTextSource_GetBackgroundColor_03 (HandleRef pThis)
static internal void vtkTextSource_GetBackgroundColor_04 (HandleRef pThis, IntPtr data)
static internal int vtkTextSource_GetBacking_05 (HandleRef pThis)
static internal IntPtr vtkTextSource_GetForegroundColor_06 (HandleRef pThis)
static internal void vtkTextSource_GetForegroundColor_07 (HandleRef pThis, IntPtr data)
static internal IntPtr vtkTextSource_GetText_08 (HandleRef pThis)
static internal int vtkTextSource_IsA_09 (HandleRef pThis, string type)
static internal int vtkTextSource_IsTypeOf_10 (string type)
static internal IntPtr vtkTextSource_NewInstance_12 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkTextSource_SafeDownCast_13 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkTextSource_SetBackgroundColor_14 (HandleRef pThis, double _arg1, double _arg2, double _arg3)
static internal void vtkTextSource_SetBackgroundColor_15 (HandleRef pThis, IntPtr _arg)
static internal void vtkTextSource_SetBacking_16 (HandleRef pThis, int _arg)
static internal void vtkTextSource_SetForegroundColor_17 (HandleRef pThis, double _arg1, double _arg2, double _arg3)
static internal void vtkTextSource_SetForegroundColor_18 (HandleRef pThis, IntPtr _arg)
static internal void vtkTextSource_SetText_19 (HandleRef pThis, string _arg)

Static Private Member Functions

static vtkTextSource ()
 Automatically generated type registration mechanics.

Detailed Description

vtkTextSource - create polygonal text

Description vtkTextSource converts a text string into polygons. This way you can insert text into your renderings. It uses the 9x15 font from X Windows. You can specify if you want the background to be drawn or not. The characters are formed by scan converting the raster font into quadrilaterals. Colors are assigned to the letters using scalar data. To set the color of the characters with the source's actor property, set BackingOff on the text source and ScalarVisibilityOff on the associated vtkPolyDataMapper. Then, the color can be set using the associated actor's property.

vtkVectorText generates higher quality polygonal representations of characters.


Constructor & Destructor Documentation

static Kitware.VTK.vtkTextSource.vtkTextSource ( ) [static, private]

Automatically generated type registration mechanics.

Kitware.VTK.vtkTextSource.vtkTextSource ( IntPtr  rawCppThis,
bool  callDisposalMethod,
bool  strong 
)

Automatically generated constructor - called from generated code. DO NOT call directly.

Construct object with no string set and backing enabled.


Member Function Documentation

virtual void Kitware.VTK.vtkTextSource.BackingOff ( ) [virtual]

Controls whether or not a background is drawn with the text.

virtual void Kitware.VTK.vtkTextSource.BackingOn ( ) [virtual]

Controls whether or not a background is drawn with the text.

override void Kitware.VTK.vtkTextSource.Dispose ( bool  disposing) [protected]

Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.

virtual double [] Kitware.VTK.vtkTextSource.GetBackgroundColor ( ) [virtual]

Set/Get the background color. Default is black (0,0,0). Alpha is always 1.

virtual void Kitware.VTK.vtkTextSource.GetBackgroundColor ( IntPtr  data) [virtual]

Set/Get the background color. Default is black (0,0,0). Alpha is always 1.

virtual int Kitware.VTK.vtkTextSource.GetBacking ( ) [virtual]

Controls whether or not a background is drawn with the text.

virtual double [] Kitware.VTK.vtkTextSource.GetForegroundColor ( ) [virtual]

Set/Get the foreground color. Default is white (1,1,1). ALpha is always 1.

virtual void Kitware.VTK.vtkTextSource.GetForegroundColor ( IntPtr  data) [virtual]

Set/Get the foreground color. Default is white (1,1,1). ALpha is always 1.

virtual string Kitware.VTK.vtkTextSource.GetText ( ) [virtual]

Set/Get the text to be drawn.

override int Kitware.VTK.vtkTextSource.IsA ( string  type) [virtual]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.

static new int Kitware.VTK.vtkTextSource.IsTypeOf ( string  type) [static]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.

Construct object with no string set and backing enabled.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.

Here is the call graph for this function:

virtual void Kitware.VTK.vtkTextSource.SetBackgroundColor ( double  _arg1,
double  _arg2,
double  _arg3 
) [virtual]

Set/Get the background color. Default is black (0,0,0). Alpha is always 1.

virtual void Kitware.VTK.vtkTextSource.SetBackgroundColor ( IntPtr  _arg) [virtual]

Set/Get the background color. Default is black (0,0,0). Alpha is always 1.

virtual void Kitware.VTK.vtkTextSource.SetBacking ( int  _arg) [virtual]

Controls whether or not a background is drawn with the text.

virtual void Kitware.VTK.vtkTextSource.SetForegroundColor ( double  _arg1,
double  _arg2,
double  _arg3 
) [virtual]

Set/Get the foreground color. Default is white (1,1,1). ALpha is always 1.

virtual void Kitware.VTK.vtkTextSource.SetForegroundColor ( IntPtr  _arg) [virtual]

Set/Get the foreground color. Default is white (1,1,1). ALpha is always 1.

virtual void Kitware.VTK.vtkTextSource.SetText ( string  _arg) [virtual]

Set/Get the text to be drawn.

static internal void Kitware.VTK.vtkTextSource.vtkTextSource_BackingOff_01 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkTextSource.vtkTextSource_BackingOn_02 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkTextSource.vtkTextSource_GetBackgroundColor_03 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkTextSource.vtkTextSource_GetBackgroundColor_04 ( HandleRef  pThis,
IntPtr  data 
) [private]
static internal int Kitware.VTK.vtkTextSource.vtkTextSource_GetBacking_05 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkTextSource.vtkTextSource_GetForegroundColor_06 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkTextSource.vtkTextSource_GetForegroundColor_07 ( HandleRef  pThis,
IntPtr  data 
) [private]
static internal IntPtr Kitware.VTK.vtkTextSource.vtkTextSource_GetText_08 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkTextSource.vtkTextSource_IsA_09 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkTextSource.vtkTextSource_IsTypeOf_10 ( string  type) [private]
static internal IntPtr Kitware.VTK.vtkTextSource.vtkTextSource_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkTextSource.vtkTextSource_NewInstance_12 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkTextSource.vtkTextSource_SafeDownCast_13 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkTextSource.vtkTextSource_SetBackgroundColor_14 ( HandleRef  pThis,
double  _arg1,
double  _arg2,
double  _arg3 
) [private]
static internal void Kitware.VTK.vtkTextSource.vtkTextSource_SetBackgroundColor_15 ( HandleRef  pThis,
IntPtr  _arg 
) [private]
static internal void Kitware.VTK.vtkTextSource.vtkTextSource_SetBacking_16 ( HandleRef  pThis,
int  _arg 
) [private]
static internal void Kitware.VTK.vtkTextSource.vtkTextSource_SetForegroundColor_17 ( HandleRef  pThis,
double  _arg1,
double  _arg2,
double  _arg3 
) [private]
static internal void Kitware.VTK.vtkTextSource.vtkTextSource_SetForegroundColor_18 ( HandleRef  pThis,
IntPtr  _arg 
) [private]
static internal void Kitware.VTK.vtkTextSource.vtkTextSource_SetText_19 ( HandleRef  pThis,
string  _arg 
) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkTextSource.MRClassNameKey = "13vtkTextSource" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.

new const string Kitware.VTK.vtkTextSource.MRFullTypeName = "Kitware.VTK.vtkTextSource"

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.


The documentation for this class was generated from the following file: