GUI
Class STY_ListBox

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

class STY_ListBox
extends GUI.STY_SquareButton

// ==================================================================== // (c) 2002, Epic Games, Inc. All Rights Reserved // ====================================================================

Source Code


00001	// ====================================================================
00002	//  (c) 2002, Epic Games, Inc.  All Rights Reserved
00003	// ====================================================================
00004	
00005	class STY_ListBox extends STY_SquareButton;
00006	
00007	
00008	
00009	defaultproperties
00010	{
00011	     KeyName="ListBox"
00012	     FontColors(0)=(B=0,G=0,R=0)
00013	     FontColors(4)=(B=0,G=0,R=0,A=255)
00014	     ImgColors(0)=(A=150)
00015	     ImgColors(1)=(A=150)
00016	     ImgColors(2)=(A=150)
00017	     ImgColors(3)=(A=150)
00018	     ImgColors(4)=(A=150)
00019	     BorderOffsets(0)=10
00020	     BorderOffsets(1)=10
00021	     BorderOffsets(2)=10
00022	     BorderOffsets(3)=10
00023	}

End Source Code