summaryrefslogtreecommitdiff
path: root/html
diff options
context:
space:
mode:
authorscuri <scuri>2009-06-23 03:18:33 +0000
committerscuri <scuri>2009-06-23 03:18:33 +0000
commit0610dd4f3064220a2e8fb1d8dc120044eb6c64a8 (patch)
treea5d0d3b6c79e967cd4e80c7668b906e8b422f902 /html
parent09be96e0606d05b056f82b5f9254208a2d0e4c88 (diff)
*** empty log message ***
Diffstat (limited to 'html')
-rw-r--r--html/en/func/text.html35
-rw-r--r--html/en/func/vectortext.html108
-rw-r--r--html/en/history.html15
-rw-r--r--html/wb/wb_usr.lua24
-rw-r--r--html/wb_tree.html26
5 files changed, 121 insertions, 87 deletions
diff --git a/html/en/func/text.html b/html/en/func/text.html
index 6243325..f3399dc 100644
--- a/html/en/func/text.html
+++ b/html/en/func/text.html
@@ -37,8 +37,8 @@ canvas:Text(x, y: number, text: string) [in Lua]
canvas:fText(x, y: number, text: string) [in Lua]
canvas:wText(x, y: number, text: string) (WC) [in Lua]</pre>
- <p>Inserts a text in <b><tt>(x,y)</tt></b> according to the current font and
- text alignment. It expects an ANSI string with no line breaks.</p>
+ <p>Draws a text in the position <b><tt>(x,y)</tt></b> according to the current font and
+ text alignment. It expects an ANSI string. Can have line breaks.</p>
<h3>Attributes</h3>
<pre class="function"><span class="mainFunction">void <a name="cdFont">cdCanvasFont</a>(cdCanvas* canvas, const char* typeface, int style, int size); [in C]</span>
@@ -164,9 +164,21 @@ void wdCanvasGetTextSize(cdCanvas* canvas, const char* text, double *width, doub
canvas:GetTextSize(text: string) -&gt; (width, heigth: number) [in Lua]
canvas:wGetTextSize(text: string) -&gt; (width, heigth: number) (WC) [in Lua]</pre>
- <p>Returns the width and height of a text's minimum box with the currently selected font. If the driver does not
- support this kind of query, the values will be given 0 (zero). It is not necessary to provide all return pointers, you
- can provide only the desired values and <i><tt>NULL</tt></i> for the others.</p>
+ <p>Returns the text size independent from orientation. It is
+ not necessary to provide all return pointers, you can provide only the desired
+ values and <font>NULL</font> for the others.</p>
+
+<pre class="function"><span class="mainFunction">void <a name="cdTextBounds">cdCanvasGetTextBounds</a>(cdCanvas* canvas, int x, int y, const char *text, int *rect); [in C]</span>
+void wdCanvasGetTextBounds(cdCanvas* canvas, double x, double y, const char* text, double *rect); (WC) [in C]
+
+canvas:GetTextBounds(x, y: number, text: string) -&gt; (rect0, rect1, rect2, rect3, rect4, rect5, rect6, rect7: number) [in Lua]
+canvas:wGetTextBounds(x, y: number, text: string) -&gt; (rect0, rect1, rect2, rect3, rect4, rect5, rect6, rect7: number) (WC) [in Lua]</pre>
+
+ <p>Returns the oriented bounding rectangle occupied by a text at a given
+ position. The rectangle has the same dimentions returned by <strong>
+ GetTextSize</strong>. The rectangle corners are returned in counter-clock wise
+ order starting with the bottom left corner, arranged (x0,y0,x1,y1,x2,y2,x3,y3).</p>
+
<pre class="function"><span class="mainFunction">void <a name="cdTextBox">cdCanvasGetTextBox</a>(cdCanvas* canvas, int x, int y, const char* text, int *xmin, int *xmax, int *ymin, int *ymax); [in C]</span>
void wdCanvasGetTextBox(cdCanvas* canvas, double x, double y, const char* text, double *xmin, double *xmax, double *ymin, double *ymax); (WC) [in C]
@@ -174,18 +186,11 @@ void wdCanvasGetTextBox(cdCanvas* canvas, double x, double y, const char* text,
canvas:GetTextBox(x, y: number, text: string) -&gt; (xmin, xmax, ymin, ymax: number) [in Lua]
canvas:wGetTextBox(x, y: number, text: string) -&gt; (xmin, xmax, ymin, ymax: number) (WC) [in Lua]</pre>
- <p>Returns the horizontal bounding rectangle of a text box, even if the text has an orientation. It is not necessary
+ <p>Returns the horizontal bounding rectangle occupied by a text at a given
+ position. If orientation is not 0 then its area is always larger than the
+ area of the rectangle returned by <strong>GetTextBounds</strong>. It is not necessary
to provide all return pointers, you can provide only the desired values and <i><tt>NULL</tt></i> for the others.</p>
-<pre class="function"><span class="mainFunction">void <a name="cdTextBounds">cdCanvasGetTextBounds</a>(cdCanvas* canvas, int x, int y, const char *text, int *rect); [in C]</span>
-void wdCanvasGetTextBounds(cdCanvas* canvas, double x, double y, const char* text, double *rect); (WC) [in C]
-
-canvas:GetTextBounds(x, y: number, text: string) -&gt; (rect0, rect1, rect2, rect3, rect4, rect5, rect6, rect7: number) [in Lua]
-canvas:wGetTextBounds(x, y: number, text: string) -&gt; (rect0, rect1, rect2, rect3, rect4, rect5, rect6, rect7: number) (WC) [in Lua]</pre>
-
- <p>Returns the oriented bounding rectangle of a text box. The rectangle corners are returned in counter-clock wise
- order starting with the bottom left corner, (x,y) arranged (x0,y0,x1,y1,x2,y2,x3,y3).</p>
-
</body>
diff --git a/html/en/func/vectortext.html b/html/en/func/vectortext.html
index e1b1d6e..84ca128 100644
--- a/html/en/func/vectortext.html
+++ b/html/en/func/vectortext.html
@@ -9,9 +9,8 @@
<body>
<h2 align="center">Vector Text</h2>
<p>It is a text that uses a font created only with line segments. It is very
- useful to be scaled and very fast. You must set the text size before drawing
- any text. The functions ignore the new line character "\n"; only the <font>wdMultiLineVectorText</font>
- function will consider this character. The default direction is horizontal from
+ useful to be scaled and very fast. You must set the text size before drawing
+ any text. The default direction is horizontal from
left to right.</p>
<p align="center"><font size="4">Vector Text Parameters</font><br>
<img src="../../img/vector_text.gif" align="middle" border="2" width="101" height="91"></p>
@@ -26,35 +25,28 @@ canvas:wVectorText(x, y: number, text: string) (WC) [in Lua]</pre>
<p>Draws a vector text in position <tt><b>(x,y)</b></tt>, respecting the
alignment defined by <font><strong>cdTextAlignment</strong></font>. It ignores
the configuration <font><strong>cdBackOpacity</strong></font>, being always
- transparent. It also ignores strings with multiple lines. It is ESSENTIAL to
+ transparent. It accepts strings with multiple lines using <font>'\n'</font>. It is ESSENTIAL to
call <font><strong>cdVectorTextSize</strong></font> or <font><strong>cdVectorCharSize</strong></font>
- before using <font><strong>cdVectorText</strong></font> or <font><strong>cdMultiLineVetorText</strong></font>.</p>
- <pre class="function"><span class="mainFunction">void <a name="cdMultiLineVectorText">cdCanvasMultiLineVectorText</a>(cdCanvas* canvas, int x, int y, const char* text); [in C]</span>
-void wdCanvasMultiLineVectorText(cdCanvas* canvas, double x, double y, const char* text); (WC) [in C]
-
-canvas:MultiLineVectorText(x, y: number, text: string) [in Lua]
-canvas:wMultiLineVectorText(x, y: number, text: string) (WC) [in Lua]</pre>
- <p>Draws a vector text with several lines in position <b><tt>(x,y)</tt></b>,
- respecting the alignment defined by <font><strong>cdTextAlignment</strong></font>.
- It ignores the configuration <font><strong>cdBackOpacity</strong></font>, being
- always transparent. Lines are broken by characters <font>"\n"</font>. Each line
- respects the scale defined in <font><strong>cdVectorTextSize</strong></font> or <font>
- <strong>cdVectorCharSize</strong></font>. This function's purpose is to make
- function <strong><font>cdVectorText</font></strong> more efficient, not being
- concerned with multiple lines.</p>
+ before using this function.</p>
+ <p>The <strong>wdCanvasVectorText</strong> is the only function that
+ actually depends on World Coordinates. The other Vector Text functions
+ although use the &quot;<strong>wd</strong>&quot; prefix they do not depend on World
+ Coordinates. They are kept with these names for backward compatibility. The
+ correct prefix would be &quot;<strong>cdf</strong>&quot;.</p>
<h3>Attributes</h3>
<pre class="function"><span class="mainFunction">void <a name="cdVectorTextDirection">cdCanvasVectorTextDirection</a>(cdCanvas* canvas, int x1, int y1, int x2, int y2); [in C]</span>
-void wdCanvasVectorTextDirection(cdCanvas* canvas, double x1, double y1, double x2, double y2); (WC) [in C]
+void wdCanvasVectorTextDirection(cdCanvas* canvas, double x1, double y1, double x2, double y2); [in C]
canvas:VectorTextDirection(x1, y1, x2, y2: number) [in Lua]
-canvas:wVectorTextDirection(x1, y1, x2, y2: number) (WC) [in Lua]</pre>
+canvas:wVectorTextDirection(x1, y1, x2, y2: number) [in Lua]</pre>
<p>Defines the text direction by means of two points, <b><tt>(x1,y1)</tt></b> and <b>
- <tt>(x2,y2)</tt></b>. The default direction is horizontal from left to right.</p>
+ <tt>(x2,y2)</tt></b>. The default direction is horizontal from left to right.
+ It is independent from the transformation matrix.</p>
<pre class="function"><span class="mainFunction">double* <a name="cdVectorTextTransform">cdCanvasVectorTextTransform</a>(cdCanvas* canvas, const double* matrix); [in C]</span>
canvas:VectorTextTransform(matrix: table) -&gt; (old_matrix: table) [in Lua]&nbsp;</pre>
<p>Defines a transformation matrix with 6 elements. If the matrix is NULL, no
- transformation is set. The default direction is no transformation. The origin
+ transformation is set. The default is no transformation. The origin
is the left bottom corner of matrix. It returns the previous matrix, and the
returned vector is only valid until the following call to the function.</p>
<p>The matrix contains scale, rotation and translation elements. It is applied after
@@ -63,22 +55,33 @@ canvas:VectorTextTransform(matrix: table) -&gt; (old_matrix: table) [in Lua]&nbs
<pre>|x'| | scl_x*cos(ang) -sin(ang) trans_x | |x| | 3 4 5|
|y'| = | sin(ang) scl_y*cos(ang) trans_y | * |y| with indices | 0 1 2|
|1|</pre>
- <pre class="function"><span class="mainFunction">void <a name="cdVectorTextSize">cdCanvasVectorTextSize</a>(cdCanvas* canvas, int w, int h, const char * text); [in C]</span>
-void wdCanvasVectorTextSize(cdCanvas* canvas, double size_x, double size_y, const char* text); (WC) [in C]
+ <p>It has the same effect of the <strong>
+ cdCanvasTransform,</strong> but notice that the indices are different.</p>
+ <pre class="function"><span class="mainFunction">void <a name="cdVectorTextSize">cdCanvasVectorTextSize</a>(cdCanvas* canvas, int width, int height, const char * text); [in C]</span>
+void wdCanvasVectorTextSize(cdCanvas* canvas, double width, double height, const char* text); [in C]
-canvas:VectorTextSize(w, h: number, text: string) [in Lua]
-canvas:wVectorTextSize(w, h: number, text: string) (WC) [in Lua]</pre>
- <p>Modifies the scale of the vector text so that it corresponds to the string of
- the bounding box defined by <b><tt>w</tt></b> and <b><tt>h</tt></b>. It ignores
- strings with multiple lines.</p>
+canvas:VectorTextSize(width, height: number, text: string) [in Lua]
+canvas:wVectorTextSize(width, height: number, text: string) [in Lua]</pre>
+ <p>Modifies the font size of the vector text so that it fits the string in
+ the box defined by <b><tt>width</tt></b> and <b><tt>height</tt></b>.</p>
<pre class="function"><span class="mainFunction">double <a name="cdVectorCharSize">cdCanvasVectorCharSize</a>(cdCanvas* canvas, int size); [in C]</span>
-double wdCanvasVectorCharSize(double size); (WC) [in C]
+double wdCanvasVectorCharSize(cdCanvas* canvas, double size); [in C]
canvas:VectorCharSize(size: number) -&gt; (old_size: number) [in Lua]
-canvas:wVectorCharSize(size: number) -&gt; (old_size: number) (WC) [in Lua]</pre>
- <p>Sets the height of the characters and adjusts the width according to it.
+canvas:wVectorCharSize(size: number) -&gt; (old_size: number) [in Lua]</pre>
+ <p>Modifies the font size by specifying the height of the characters.
Returns the previous value. <strong><tt>CD_QUERY</tt></strong> returns the
current value.</p>
+ <pre class="function"><span class="mainFunction">void <a name="cdVectorFontSize">cdCanvasVectorFontSize</a>(cdCanvas* canvas, double size_x, double size_x); [in C]</span>
+
+canvas:VectorFontSize(size_x, size_y: number) [in Lua]</pre>
+ <p>Directly modifies the font size. Set size_x==size_y to maintain the
+ original aspect ratio of the font.</p>
+ <pre class="function"><span class="mainFunction">void <a name="cdGetVectorFontSize">cdCanvasGetVectorFontSize</a>(cdCanvas* canvas, double *size_x, double *size_x); [in C]</span>
+
+canvas:GetVectorFontSize() -&gt; (size_x, size_y: number) [in Lua]</pre>
+ <p>Returns the font size. It is not necessary to provide all return
+ pointers, you can provide only the desired values and <font>NULL</font> for the others.</p>
<pre class="function"><span class="mainFunction">char* <a name="cdVectorFont">cdCanvasVectorFont</a>(cdCanvas* canvas, const char *filename); [in C]</span>
canvas:VectorFont(filename: string) -&gt; (fontname: string) [in Lua]</pre>
@@ -94,23 +97,38 @@ canvas:VectorFont(filename: string) -&gt; (fontname: string) [in Lua]</pre>
to the default font and returns NULL. The file format is
compatible with the GKS file format (text mode).</p>
<h3>Properties</h3>
- <pre class="function"><span class="mainFunction">void <a name="cdGetVectorTextSize">cdCanvasGetVectorTextSize</a>(cdCanvas* canvas, const char* text, int *w, int *h); [in C]</span>
-void wdCanvasGetVectorTextSize(cdCanvas* canvas, const char* text, double *x, double *y); (WC) [in C]
+ <pre class="function"><span class="mainFunction">void <a name="cdGetVectorTextSize">cdCanvasGetVectorTextSize</a>(cdCanvas* canvas, const char* text, int *width, int *height); [in C]</span>
+void wdCanvasGetVectorTextSize(cdCanvas* canvas, const char* text, double *width, double *height); [in C]
-canvas:GetVectorTextSize(text: string) -&gt; (w, h: number) [in Lua]
-canvas:wGetVectorTextSize(text: string) -&gt; (w, h: number) (WC) [in Lua]</pre>
- <p>Queries the string's bounding box. Ignores strings with multiple lines. It is
+canvas:GetVectorTextSize(text: string) -&gt; (width, height: number) [in Lua]
+canvas:wGetVectorTextSize(text: string) -&gt; (width, height: number) [in Lua]</pre>
+ <p>Returns the text size independent from orientation. It is
not necessary to provide all return pointers, you can provide only the desired
values and <font>NULL</font> for the others.</p>
- <pre class="function"><span class="mainFunction">void <a name="cdGetVectorTextBounds">cdCanvasGetVectorTextBounds</a>(cdCanvas* canvas, char* text, int px, int py, int *rect); [in C]</span>
-void wdCanvasGetVectorTextBounds(cdCanvas* canvas, char* text, double x, double y, double *rect); (WC) [in C]
+ <pre class="function"><span class="mainFunction">void <a name="cdGetVectorTextBounds">cdCanvasGetVectorTextBounds</a>(cdCanvas* canvas, char* text, int x, int y, int *rect); [in C]</span>
+void wdCanvasGetVectorTextBounds(cdCanvas* canvas, char* text, double x, double y, double *rect); [in C]
+
+canvas:GetVectorTextBounds(text: string, x, y: number) -&gt; (rect: table) [in Lua]
+canvas:wGetVectorTextBounds(text: string, x, y: number) -&gt; (rect: table) [in Lua] </pre>
+
+ <p>Returns the oriented bounding rectangle occupied by a text at a given
+ position. The rectangle has the same dimentions returned by <strong>
+ GetVectorTextSize</strong>. The rectangle corners are returned in counter-clock wise
+ order starting with the bottom left corner, arranged (x0,y0,x1,y1,x2,y2,x3,y3).</p>
+
+
+<pre class="function"><span class="mainFunction">void <a name="cdGetVectorTextBox">cdCanvasGetVectorTextBox</a>(cdCanvas* canvas, int x, int y, const char* text, int *xmin, int *xmax, int *ymin, int *ymax); [in C]</span>
+void wdCanvasGetVectorTextBox(cdCanvas* canvas, double x, double y, const char* text, double *xmin, double *xmax, double *ymin, double *ymax); [in C]
+
+canvas:GetVectorTextBox(x, y: number, text: string) -&gt; (xmin, xmax, ymin, ymax: number) [in Lua]
+canvas:wGetVectorTextBox(x, y: number, text: string) -&gt; (xmin, xmax, ymin, ymax: number) [in Lua]</pre>
+
+ <p>Returns the horizontal bounding rectangle occupied by a text at a given
+ position. If
+ orientation is not 0 then its area is always larger than the area of the
+ rectangle returned by <strong>GetVectorTextBounds</strong>. It is not necessary
+ to provide all return pointers, you can provide only the desired values and <i><tt>NULL</tt></i> for the others.</p>
-canvas:GetVectorTextBounds(text: string, px,py: number) -&gt; (rect: table) [in Lua]
-canvas:wGetVectorTextBounds(text: string, px,py: number) -&gt; (rect: table) (WC) [in Lua] </pre>
- <p>Returns the bounding rectangle of the text specified in the current vector
- font, alignment and direction. Eight values are returned, corresponding to
- pairs (x,y) of the rectangle's vertices ordered conter-clockwise, starting by
- the bottom left corner.</p>
<h3>Character Codes</h3>
<p>The old GKS format contains ASCII codes so a convertion from ANSI to ASCII is
done when possible, unmapped characters are left unchanged, but some rearrage
diff --git a/html/en/history.html b/html/en/history.html
index 165a75b..25355fc 100644
--- a/html/en/history.html
+++ b/html/en/history.html
@@ -10,12 +10,23 @@
<body>
<h1>History of Changes</h1>
-<h3>CVS (13/Jun/2008)</h3>
+<h3>CVS (22/Jun/2008)</h3>
<ul>
+ <li><span style="color: #0000FF">New:</span> functions <strong>
+ CanvasGetVectorTextBox, CanvasGetVectorFontSize</strong> and <strong>
+ CanvasVectorFontSize</strong>.</li>
<li><span style="color: #008000">Changed:</span>
CD_DBUFFER now activates the buffered canvas before creating the image
canvas. If size is 0 then uses 1 and avoid to fail during creation.</li>
- <li><span style="color: #FF0000">Fixed:</span> <strong>cdCanvasText</strong>
+ <li><span style="color: #008000">Changed:</span>
+ the functions <strong>CanvasVectorText</strong>, <strong>CanvasText</strong>
+ and <strong>CanvasGetTextSize</strong> now supports line breaks using '\n'.
+ <strong>CanvasMultiLineVectorText</strong> is now deprecated but kept for
+ compatibility.
+ <strong>
+ <span style="color: #FF0000">IMPORTANT</span></strong> - VectorTextSize now
+ includes the full line size.</li>
+ <li><span style="color: #FF0000">Fixed:</span> <strong>CanvasText</strong>
for CD_IMAGERGB driver when the foreground color has alpha.</li>
</ul>
<h3>Version 5.1.1 (15/Dec/2008)</h3>
diff --git a/html/wb/wb_usr.lua b/html/wb/wb_usr.lua
index bcbaeec..a494653 100644
--- a/html/wb/wb_usr.lua
+++ b/html/wb/wb_usr.lua
@@ -240,7 +240,7 @@ wb_usr.tree =
folder=
{
{
- name= {nl= "GetCanvasSize"},
+ name= {nl= "GetSize"},
link= "func/coordinates.html#cdGetCanvasSize"
},
{
@@ -625,21 +625,21 @@ wb_usr.tree =
folder=
{
{
- name= {nl= "FontDim"},
+ name= {nl= "GetFontDim"},
link= "func/text.html#cdFontDim"
},
{
- name= {nl= "TextSize"},
+ name= {nl= "GetTextSize"},
link= "func/text.html#cdTextSize"
},
{
- name= {nl= "TextBox"},
- link= "func/text.html#cdTextBox"
+ name= {nl= "GetTextBounds"},
+ link= "func/text.html#cdTextBounds"
},
{
- name= {nl= "TextBounds"},
- link= "func/text.html#cdTextBounds"
- }
+ name= {nl= "GetTextBox"},
+ link= "func/text.html#cdTextBox"
+ },
}
}
}
@@ -654,10 +654,6 @@ wb_usr.tree =
link= "func/vectortext.html#cdVectorText"
},
{
- name= {nl= "MultiLineVectorText"},
- link= "func/vectortext.html#cdMultiLineVectorText"
- },
- {
name= {en= "Attributes"},
folder=
{
@@ -694,6 +690,10 @@ wb_usr.tree =
{
name= {nl= "GetVectorTextBounds"},
link= "func/vectortext.html#cdGetVectorTextBounds"
+ },
+ {
+ name= {nl= "GetVectorTextBox"},
+ link= "func/vectortext.html#cdGetVectorTextBox"
}
}
}
diff --git a/html/wb_tree.html b/html/wb_tree.html
index 74cbc45..19d0fe6 100644
--- a/html/wb_tree.html
+++ b/html/wb_tree.html
@@ -286,7 +286,7 @@
</div>
<p><img src="wb_img/vertline.png"><img name="imgfolder.3.3" src="wb_img/plusnode.png" onclick="toggleFolder('folder.3.3')"> Coordinate System</p>
<div id="folder.3.3">
- <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link48folder.3.3" href="en/func/coordinates.html#cdGetCanvasSize">GetCanvasSize</a></p>
+ <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link48folder.3.3" href="en/func/coordinates.html#cdGetCanvasSize">GetSize</a></p>
<p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link49folder.3.3" href="en/func/coordinates.html#cdUpdateYAxis">UpdateYAxis</a></p>
<p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link50folder.3.3" href="en/func/coordinates.html#cdMM2Pixel">MM2Pixel</a></p>
<p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link51folder.3.3" href="en/func/coordinates.html#cdPixel2MM">Pixel2MM</a></p>
@@ -406,28 +406,28 @@
</div>
<p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img name="imgfolder.4.4.2" src="wb_img/plusnodelast.png" onclick="toggleFolder('folder.4.4.2')"> Properties</p>
<div id="folder.4.4.2">
- <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/blank.png"><img src="wb_img/node.png"><a class="el" name="link125folder.4.4.2" href="en/func/text.html#cdFontDim">FontDim</a></p>
- <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/blank.png"><img src="wb_img/node.png"><a class="el" name="link126folder.4.4.2" href="en/func/text.html#cdTextSize">TextSize</a></p>
- <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/blank.png"><img src="wb_img/node.png"><a class="el" name="link127folder.4.4.2" href="en/func/text.html#cdTextBox">TextBox</a></p>
- <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/blank.png"><img src="wb_img/nodelast.png"><a class="el" name="link128folder.4.4.2" href="en/func/text.html#cdTextBounds">TextBounds</a></p>
+ <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/blank.png"><img src="wb_img/node.png"><a class="el" name="link125folder.4.4.2" href="en/func/text.html#cdFontDim">GetFontDim</a></p>
+ <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/blank.png"><img src="wb_img/node.png"><a class="el" name="link126folder.4.4.2" href="en/func/text.html#cdTextSize">GetTextSize</a></p>
+ <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/blank.png"><img src="wb_img/node.png"><a class="el" name="link127folder.4.4.2" href="en/func/text.html#cdTextBounds">GetTextBounds</a></p>
+ <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/blank.png"><img src="wb_img/nodelast.png"><a class="el" name="link128folder.4.4.2" href="en/func/text.html#cdTextBox">GetTextBox</a></p>
</div>
</div>
<p><img src="wb_img/vertline.png"><img name="imgfolder.4.5" src="wb_img/plusnode.png" onclick="toggleFolder('folder.4.5')"><a name="link129folder.4.5" class="el" href="en/func/vectortext.html">Vector Text</a></p>
<div id="folder.4.5">
<p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link130folder.4.5" href="en/func/vectortext.html#cdVectorText">VectorText</a></p>
- <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link131folder.4.5" href="en/func/vectortext.html#cdMultiLineVectorText">MultiLineVectorText</a></p>
<p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img name="imgfolder.4.5.1" src="wb_img/plusnode.png" onclick="toggleFolder('folder.4.5.1')"> Attributes</p>
<div id="folder.4.5.1">
- <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link132folder.4.5.1" href="en/func/vectortext.html#cdVectorTextDirection">VectorTextDirection</a></p>
- <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link133folder.4.5.1" href="en/func/vectortext.html#cdVectorTextTransform">VectorTextTransform</a></p>
- <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link134folder.4.5.1" href="en/func/vectortext.html#cdVectorTextSize">VectorTextSize</a></p>
- <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link135folder.4.5.1" href="en/func/vectortext.html#cdVectorCharSize">VectorCharSize</a></p>
- <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/nodelast.png"><a class="el" name="link136folder.4.5.1" href="en/func/vectortext.html#cdVectorFont">VectorFont</a></p>
+ <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link131folder.4.5.1" href="en/func/vectortext.html#cdVectorTextDirection">VectorTextDirection</a></p>
+ <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link132folder.4.5.1" href="en/func/vectortext.html#cdVectorTextTransform">VectorTextTransform</a></p>
+ <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link133folder.4.5.1" href="en/func/vectortext.html#cdVectorTextSize">VectorTextSize</a></p>
+ <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link134folder.4.5.1" href="en/func/vectortext.html#cdVectorCharSize">VectorCharSize</a></p>
+ <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/nodelast.png"><a class="el" name="link135folder.4.5.1" href="en/func/vectortext.html#cdVectorFont">VectorFont</a></p>
</div>
<p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img name="imgfolder.4.5.2" src="wb_img/plusnodelast.png" onclick="toggleFolder('folder.4.5.2')"> Properties</p>
<div id="folder.4.5.2">
- <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/blank.png"><img src="wb_img/node.png"><a class="el" name="link137folder.4.5.2" href="en/func/vectortext.html#cdGetVectorTextSize">GetVectorTextSize</a></p>
- <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/blank.png"><img src="wb_img/nodelast.png"><a class="el" name="link138folder.4.5.2" href="en/func/vectortext.html#cdGetVectorTextBounds">GetVectorTextBounds</a></p>
+ <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/blank.png"><img src="wb_img/node.png"><a class="el" name="link136folder.4.5.2" href="en/func/vectortext.html#cdGetVectorTextSize">GetVectorTextSize</a></p>
+ <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/blank.png"><img src="wb_img/node.png"><a class="el" name="link137folder.4.5.2" href="en/func/vectortext.html#cdGetVectorTextBounds">GetVectorTextBounds</a></p>
+ <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/blank.png"><img src="wb_img/nodelast.png"><a class="el" name="link138folder.4.5.2" href="en/func/vectortext.html#cdGetVectorTextBox">GetVectorTextBox</a></p>
</div>
</div>
<p><img src="wb_img/vertline.png"><img name="imgfolder.4.6" src="wb_img/plusnode.png" onclick="toggleFolder('folder.4.6')"><a name="link139folder.4.6" class="el" href="en/func/client.html">Client Images</a></p>