| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <html>
- <head>
- <title>Blitz3D Docs</title>
- <link rel=stylesheet href=../css/commands.css type=text/css>
- </head>
- <body>
- <h1>Cls</h1>
- <h1>Parameters</h1>
- <table>
- <tr>
- <td>
- None.
- </td>
- </tr>
- </table>
- <h1>Description</h1>
- <table>
- <tr>
- <td>
- This command will wipe the current drawing buffer clean of any graphics or text present and reset the drawing buffer back to the color defined in the ClsColor command
- </td>
- </tr>
- </table>
- <h1><a href=../2d_examples/Cls.bb>Example</a></h1>
- <table>
- <tr>
- <td>
- ;set ClsColor to red
<br />
- ClsColor 255,0,0
<br />
-
<br />
- ;set current drawing buffer to the color set by the ClsColor command
<br />
- Cls
- </td>
- </tr>
- </table>
- <br>
- <a target=_top href=../index.htm>Index</a><br>
- <br>
- Click <a href=http://www.blitzbasic.co.nz/b3ddocs/command.php?name=Cls&ref=comments target=_blank>here</a> to view the latest version of this page online</body>
- </html>
|