[Wnd-commit] wnd/wnd_doc/doc/gdi/font font.dtpl,1.1.1.1,1.2
Status: Alpha
Brought to you by:
jurner
|
From: jürgen u. <cer...@us...> - 2005-07-23 20:12:23
|
Update of /cvsroot/wnd/wnd/wnd_doc/doc/gdi/font In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7415 Modified Files: font.dtpl Log Message: bit of this and a bit of that Index: font.dtpl =================================================================== RCS file: /cvsroot/wnd/wnd/wnd_doc/doc/gdi/font/font.dtpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** font.dtpl 29 Apr 2005 15:16:39 -0000 1.1.1.1 --- font.dtpl 23 Jul 2005 20:12:14 -0000 1.2 *************** *** 370,374 **** ::item:: TextOutEx ! <code>TextOutEx(dc, text, x, y, rect=None, spacing=None, *flags)</code><br> <P> Draws a string to the dc. --- 370,374 ---- ::item:: TextOutEx ! <code>TextOutEx(dc, text, x, y, *flags, **kwargs)</code><br> <P> Draws a string to the dc. *************** *** 389,407 **** <br><br> - <DT>Rect - <DD>an optional ||type-RECT|| to use for clipping or opaquing. - If 'opaque' flag is specified the rectangle is filled with the current background - color of the dc. - <br><br> - <DT>spacing - <DD>an optional a list or tuple with the intercharacter spacing (in pixels) - for each char in the string. - <br> - string='footext'<br> - spacing=(10, 20, 30,40,50,60)<br> - >> f.o..o...t....e.....x......t<br> - Spacing counts from the left edge of the char. - <br><br> - <DT>flags <DD>one of the following flags: --- 389,392 ---- *************** *** 427,430 **** --- 412,439 ---- </TR> </TABLE> + + + </DL> + <br><br> + The following keyword arguments are recognized: + + <DL> + <DT>rect + <DD>an optional ||type-RECT|| to use for clipping or opaquing. + If 'opaque' flag is specified the rectangle is filled with the current background + color of the dc. + <br><br> + <DT>spacing + <DD>an optional a list or tuple with the intercharacter spacing (in pixels) + for each char in the string. + <br> + string='footext'<br> + spacing=(10, 20, 30,40,50,60)<br> + >> f.o..o...t....e.....x......t<br> + Spacing counts from the left edge of the char. + <br><br> + + </DL> + </P> |