GUI
Class GUIMultiListBoxLine

source: C:\XIII\GUI\Classes\GUIMultiListBoxLine.uc
Core.Object
   |
   +--GUI.GUIMultiListBoxLine
Direct Known Subclasses:None

class GUIMultiListBoxLine
extends Core.Object


Variables
 MultiListboxItem items[10]
           this list box has support for max 10 items ter line!
 string str
           if t is none we draw the texture instead
 Texture tex
           if t is none we draw the texture instead


Source Code


00001	class GUIMultiListBoxLine extends Object;
00002	
00003	  struct MultiListboxItem
00004	  {
00005	    var string str;          // if t is none we draw the texture instead
00006	    var texture tex;
00007	  };  
00008	
00009	
00010	  var MultiListboxItem items[10]; // this list box has support for max 10 items ter line!
00011	
00012	
00013	
00014	
00015	
00016	
00017	defaultproperties
00018	{
00019	}

End Source Code