INFO: DrawText Method Is Implemented But Not DocumentedID: Q180759
|
The DrawText method of the PictureBox control is not documented. However, the method was implemented and does work. The DrawText method draws text in the PictureBox control one line at a time.
The syntax of the PictureBox control's DrawText method is:
object.DrawText [string]
The parts of the DrawText method syntax are described in the following
table:
Part Description
---- -----------
object A PictureBox object.
string Optional. Any text string. If a string is not supplied
a blank line will be drawn.
Sub Form_Load()
PictureBox1.DrawText "Hello"
PictureBox1.DrawText
PictureBox1.DrawText "World"
End Sub
Additional query words: wince wce vbce vbce5
Keywords : kbToolkit kbVBp kbVBp500 kbWinCE kbWinCE100 kbGrpVB
Version : WINDOWS:1.0
Platform : WINDOWS
Issue type : kbinfo
Last Reviewed: March 3, 1999