Creation/Dev/Script/Client/GuiBitmapCtrl

From Graal Bible
Revision as of 18:36, 16 September 2006 by Stefan (talk | contribs) (Added picture, description and an example script)

Inherits GuiControl.

Description

Guicontrol bitmap.png

This control is simply displaying a stretched or tiled bitmap.


Variables

Name Type Description
bitmap string Image filename
wrap boolean If true, the image will be tiled. If false, the image will be stretched.


Functions

Name Return Type Description
setbitmap(str)
setvalue(int, int)


Example

 new GuiBitmapCtrl("Test_Bitmap") {
   x = 10;
   y = 10;
   width = 160;
   height = 80;
   bitmap = "2002_sysmsgbg.png";
 }