Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 00039 00040 00041 00042 00043 00044 00045 00046 00047 00048 00049 00050 00051 00052 |
//============================================================================== // Created on: 11/17/2003 // Description // // Written by Ron Prestenback // © 2003, Epic Games, Inc. All Rights Reserved //============================================================================== class MOTDConfigPage extends GUIArrayPropPage; function InitComponent(GUIController MyController, GUIComponent MyOwner) { Super.InitComponent(MyController, MyOwner); sb_Bk1.WinWidth = 0.621875; sb_Bk1.WinHeight = 0.340625; sb_Bk1.WinLeft = 0.043750; sb_Bk1.WinTop = 0.116666; sb_Bk1.TopPadding = 0.01; sb_Bk1.LeftPadding = 0.01; sb_Bk1.RightPadding = 0.01; } function SetOwner(GUIComponent NewOwner) { Super.SetOwner(NewOwner); PropValue.Length = 4; } function string GetDataString() { return JoinArray(PropValue, "|", True); } function SetItemOptions( GUIMenuOption mo ) { local moEditBox ed; ed = moEditBox(mo); if ( ed != None ) ed.MyEditBox.MaxWidth = 60; } defaultproperties { Delim="|" WinTop=0.218750 WinLeft=0.166992 WinWidth=0.684570 WinHeight=0.509375 } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |