There is no spoon

Difference between revisions of "Legacy:MoNumericEdit"

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
 
(No difference)

Latest revision as of 03:47, 5 December 2003

UT2003 :: GUI >> GUIComponent >> GUIMultiComponent >> GUIMenuOption >> MoNumericEdit

Numerical edit box with + and - buttons and a built-in caption. Most significant properties are inherited from GUIMenuOption.

Example Definition[edit]

defaultproperties {
  Begin Object Class=moNumericEdit Name=MaximumLlamaDuration
    WinTop=0.0
    WinLeft=0.1
    WinHeight=0.1
    WinWidth=0.7
    Caption="Llama Hunt Duration"
    Hint="Maximum duration of a llama hunt."
    CaptionWidth=0.714286
    MinValue=10
    MaxValue=120
    bHeightFromComponent=False
    OnChange=SaveINISettings
  End Object
  Controls(5)=moNumericEdit'MaximumLlamaDuration'
}

[[Category Class (UT2003)