GUI
Class GUIImage

source: C:\XIII\GUI\Classes\GUIImage.uc
Core.Object
   |
   +--GUI.GUI
      |
      +--GUI.GUIComponent
         |
         +--GUI.GUIImage
Direct Known Subclasses:GUIImageList

class GUIImage
extends GUI.GUIComponent

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

Source Code


00001	// ====================================================================
00002	//  (c) 2002, Epic Games, Inc.  All Rights Reserved
00003	// ====================================================================
00004	
00005	class GUIImage extends GUIComponent
00006		Native;
00007	
00008		
00009	var(Menu) Material 			Image;				// The Material to Render
00010	var(Menu) color				ImageColor;			// What color should we set
00011	var(Menu) eImgStyle			ImageStyle;			// How should the image be displayed
00012	var(Menu) EMenuRenderStyle	ImageRenderStyle;	// How should we display this image
00013	var(Menu) eImgAlign			ImageAlign;			// If ISTY_Justified, how should image be aligned
00014	var(Menu) int				DimX1,DimY1,DimX2,DimY2;// If set, it will pull a subimage from inside the image
00015	
00016	
00017	
00018	defaultproperties
00019	{
00020	     ImageColor=(B=255,G=255,R=255,A=255)
00021	     ImageRenderStyle=MSTY_Alpha
00022	     DimX1=-1
00023	     DimY1=-1
00024	     DimX2=-1
00025	     DimY2=-1
00026	}

End Source Code