| Description |
| This is the generic function for plotting a text line. |
| Synopsis |
| #include <ProPlotdriver.h> |
| ProError | (*ProPlotdriverTextPlot) | ( |
| ProAppData data | |
| /*
(In) |
| The application data. Can be NULL. |
| */ |
| Pro3dPnt point | |
| /*
(In) |
| The starting point of the text, defined as (X, Y, Z). The function should ignore the Z value. |
| */ |
| ProLine text | |
| /*
(In) |
| The text line. |
| */ |
| double size | |
| /*
(In) |
| The character size. If this is less than or equal to 0, the function may use the default character size. |
| */ |
| double angle | |
| /*
(In) |
| The angle of the text, in degrees. |
| */ |
| double slant_angle | |
| /*
(In) |
| The angle of the characters, in degrees. |
| */ |
| double width_factor | |
| /*
(In) |
| The character width scale factor (character width divided by character height) |
| */ |
| int font_id | |
| /*
(In) |
| The font identifier. |
| */ |
| int color | |
| /*
(In) |
| Color index. The possible values are as follows: - PRO_LETTER_COLOR
- PRO_HIGHLITE_COLOR
- PRO_DRAWING_COLOR
- PRO_BACKGROUND_COLOR
- PRO_HALF_TONE_COLOR
- PRO_EDGE_HIGHLITE_COLOR
- PRO_DIMMED_COLOR
- PRO_ERROR_COLOR
- PRO_WARNING_COLOR
|
| */ |
| ) |
| Returns |
|
|