| ScrollViewerOnUpdate Method |
Called when the game object should be updated.
Namespace: DigitalRune.Game.UI.ControlsAssembly: DigitalRune.Game.UI (in DigitalRune.Game.UI.dll) Version: 1.8.0.0 (1.8.0.14553)
Syntax protected override void OnUpdate(
TimeSpan deltaTime
)
Protected Overrides Sub OnUpdate (
deltaTime As TimeSpan
)
protected:
virtual void OnUpdate(
TimeSpan deltaTime
) override
abstract OnUpdate :
deltaTime : TimeSpan -> unit
override OnUpdate :
deltaTime : TimeSpan -> unit
Parameters
- deltaTime
- Type: SystemTimeSpan
The elapsed time since the last frame.
Remarks
This method is automatically called in
Update(TimeSpan) if the game object
hasn't already been updated in the current time step.
See Also