Creation/Dev/Script/Client/GuiBitmapBorderCtrl: Difference between revisions
From Graal Bible
mNo edit summary |
(Added image, description and example script) |
||
Line 1: | Line 1: | ||
Inherits [[Creation/Dev/Script/Client/GuiControl|GuiControl]]. | |||
=Description= | |||
[[Image:Guicontrol_bitmapborder.png]] | |||
This is a control which displays a border made of a bitmap instead of simple lines . The look is defined by the [[Creation/Dev/Script/Client/GuiControlProfile|profile]]. | |||
=Variables = | |||
tile - boolean | |||
=Example= | |||
<pre> | <pre> | ||
new GuiBitmapBorderCtrl("Test_BitmapBorder") { | |||
profile = GuiBitmapBorderProfile; | |||
x = 10; | |||
y = 10; | |||
width = 160; | |||
height = 80; | |||
} | |||
</pre> | </pre> |
Revision as of 15:02, 17 September 2006
Inherits GuiControl.
Description
This is a control which displays a border made of a bitmap instead of simple lines . The look is defined by the profile.
Variables
tile - boolean
Example
new GuiBitmapBorderCtrl("Test_BitmapBorder") { profile = GuiBitmapBorderProfile; x = 10; y = 10; width = 160; height = 80; }