GUI
Class GUIVertGripButton

source: C:\XIII\GUI\Classes\GUIVertGripButton.uc
Core.Object
   |
   +--GUI.GUI
      |
      +--GUI.GUIComponent
         |
         +--GUI.GUIButton
            |
            +--GUI.GUIGFXButton
               |
               +--GUI.GUIVertGripButton
Direct Known Subclasses:None

class GUIVertGripButton
extends GUI.GUIGFXButton

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

Function Summary
 void InitComponent(GUIController MyController, GUIComponent MyOwner)



Source Code


00001	// ====================================================================
00002	//  (c) 2002, Epic Games, Inc.  All Rights Reserved
00003	// ====================================================================
00004	
00005	class GUIVertGripButton extends GUIGFXButton
00006			Native;
00007	
00008	
00009	function InitComponent(GUIController MyController, GUIComponent MyOwner)
00010	{
00011		Super.Initcomponent(MyController, MyOwner);
00012	//	Graphic = Material'GUIContent.Menu.ButGrip';
00013	}
00014	
00015	
00016	
00017	
00018	defaultproperties
00019	{
00020	     Position=ICP_Bound
00021	     bNeverFocus=True
00022	     OnClickSound=GUI_CS_None
00023	}

End Source Code