Core.Object | +--UWindow.UWindowBase | +--UWindow.UWindowWindow | +--UWindow.UWindowDialogControl | +--UWindow.UWindowButton | +--UWindow.UWindowSmallCancelButton
string
CancelText
void
Created()
00001 class UWindowSmallCancelButton extends UWindowButton; 00002 00003 var localized string CancelText; 00004 00005 function Created() 00006 { 00007 Super.Created(); 00008 SetText(CancelText); 00009 } 00010 00011 defaultproperties 00012 { 00013 CancelText="Cancel" 00014 }