Core.Object | +--UWindow.UWindowBase | +--UWindow.UWindowWindow | +--UMenu.UMenuHelpTextArea
string
HelpText
void
Created()
Paint(Canvas C, float X, float Y)
00001 class UMenuHelpTextArea extends UWindowWindow; 00002 00003 var string HelpText; 00004 00005 function Created() 00006 { 00007 bAlwaysBehind = True; 00008 } 00009 00010 function Paint(Canvas C, float X, float Y) 00011 { 00012 C.SetPos(1, 1); 00013 C.DrawText(HelpText); 00014 } 00015 00016 defaultproperties 00017 { 00018 }